Files
xarmian 81579847c6 Initial release
Pad — project management for developers and AI agents.
Single Go binary with embedded SvelteKit web UI, SQLite storage,
CLI, and Claude Code /pad skill integration.

https://getpad.dev
2026-03-26 01:52:36 +00:00

15 lines
412 B
Go

package models
import "time"
type Version struct {
ID string `json:"id"`
DocumentID string `json:"document_id"`
Content string `json:"content"`
ChangeSummary string `json:"change_summary,omitempty"`
CreatedBy string `json:"created_by"`
Source string `json:"source"`
IsDiff bool `json:"is_diff"`
CreatedAt time.Time `json:"created_at"`
}