13 lines
373 B
Go
13 lines
373 B
Go
package newsdomain
|
|
|
|
type News struct {
|
|
Title string `json:"title"`
|
|
Content string `json:"content"`
|
|
FeaturedImage string `json:"featured_image"`
|
|
Tags []string `json:"tags"`
|
|
Categories []string `json:"categories"`
|
|
IsPremium bool `json:"is_premium"`
|
|
Slug string `json:"slug"`
|
|
Author string `json:"author"`
|
|
}
|