mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-14 17:17:32 +00:00
9 lines
192 B
Go
9 lines
192 B
Go
|
package models
|
||
|
|
||
|
type PostReadModel struct {
|
||
|
ID string `json:"id"`
|
||
|
ImagePath string `json:"image_path"`
|
||
|
SourceURL string `json:"source_url"`
|
||
|
Tags []string `json:"tags"`
|
||
|
}
|