14 lines
226 B
Go
14 lines
226 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type Post struct {
|
|
ID uint32
|
|
Title string
|
|
Content string
|
|
Description string
|
|
PreviewImageURL string
|
|
Labels []*Label
|
|
PublishedTime *time.Time
|
|
}
|