22 lines
760 B
Go
22 lines
760 B
Go
package response
|
|
|
|
import "time"
|
|
|
|
type ArticleNulisAIResponse struct {
|
|
ID uint `json:"id"`
|
|
NulisAiId int `json:"nulisAiId"`
|
|
ArticleId int `json:"articleId"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
HtmlDescription string `json:"htmlDescription"`
|
|
CategoryId int `json:"categoryId"`
|
|
CreatorId uint `json:"creatorId"`
|
|
Tags string `json:"tags"`
|
|
ThumbnailPath string `json:"thumbnailPath"`
|
|
IsPublish bool `json:"isPublish"`
|
|
PublishedAt time.Time `json:"publishedAt"`
|
|
IsActive bool `json:"isActive"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
}
|