mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-10-31 20:17:32 +00:00
13 lines
399 B
Go
13 lines
399 B
Go
package models
|
|
|
|
type PostReadModel struct {
|
|
ID string `json:"id"`
|
|
ImagePreviewPath string `json:"preview_path"`
|
|
ImagePath string `json:"image_path"`
|
|
SourceURL string `json:"source_url"`
|
|
Tags []string `json:"tags"`
|
|
Width int `json:"width"`
|
|
Height int `json:"height"`
|
|
Uploader string `json:"uploader"`
|
|
}
|