Files
backend/internal/dto/document_version.go
T
2026-07-15 22:42:31 +08:00

12 lines
286 B
Go

package dto
import "time"
type DocumentVersionResponse struct {
Version int `json:"version"`
Title string `json:"title"`
Content string `json:"content"`
ChangeSummary string `json:"change_summary"`
CreatedAt time.Time `json:"created_at"`
}