Shioriko/pkg/models/read.go

11 lines
263 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"`
Width int `json:"width"`
Height int `json:"height"`
}