phoebe/pkg/models/read.go

11 lines
263 B
Go
Raw Normal View History

2021-05-09 22:07:23 +07:00
package models
type PostReadModel struct {
ID string `json:"id"`
ImagePath string `json:"image_path"`
SourceURL string `json:"source_url"`
Tags []string `json:"tags"`
2021-05-11 17:33:22 +07:00
Width int `json:"width"`
Height int `json:"height"`
2021-05-09 22:07:23 +07:00
}