16 lines
277 B
Go
16 lines
277 B
Go
|
|
package domain
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ArticleVersion struct {
|
||
|
|
ID int64
|
||
|
|
ArticleID int64
|
||
|
|
VersionNo int
|
||
|
|
Title *string
|
||
|
|
HTMLContent *string
|
||
|
|
MarkdownContent *string
|
||
|
|
WordCount int
|
||
|
|
SourceLabel *string
|
||
|
|
CreatedAt time.Time
|
||
|
|
}
|