mirror of
https://github.com/Damillora/Yuriko.git
synced 2024-11-24 10:27:33 +00:00
30 lines
802 B
Go
30 lines
802 B
Go
package models
|
|
|
|
type Article struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title"`
|
|
Url string `json:"url"`
|
|
Slug string `json:"slug"`
|
|
Excerpt string `json:"excerpt"`
|
|
HtmlMarkup string `json:"html"`
|
|
PublishedAt float64 `json:"published_at"`
|
|
}
|
|
|
|
type ArticleCreateModel struct {
|
|
ID string `json:"id"`
|
|
Title string `json:"title"`
|
|
Url string `json:"url"`
|
|
Slug string `json:"slug"`
|
|
Excerpt string `json:"excerpt"`
|
|
HtmlMarkup string `json:"html"`
|
|
PublishedAt float64 `json:"published_at"`
|
|
}
|
|
|
|
type ArticleSearchResult struct {
|
|
Title string `json:"title"`
|
|
Url string `json:"url"`
|
|
Slug string `json:"slug"`
|
|
Excerpt string `json:"excerpt"`
|
|
PublishedAt string `json:"published_at"`
|
|
}
|