cpolis/cmd/data/articles.go

17 lines
203 B
Go
Raw Normal View History

package data
2024-03-01 11:30:31 +01:00
import (
"time"
)
type Article struct {
2024-03-06 20:53:17 +01:00
Title string
Created time.Time
Desc string
Content string
Tags []string
Published bool
ID int64
AuthorID int64
}