mirror of https://github.com/go-sonic/sonic.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
359 B
Go
14 lines
359 B
Go
package dto
|
|
|
|
type Photo struct {
|
|
ID int32 `json:"id"`
|
|
Name string `json:"name"`
|
|
Thumbnail string `json:"thumbnail"`
|
|
TakeTime int64 `json:"takeTime"`
|
|
URL string `json:"url"`
|
|
Team string `json:"team"`
|
|
Location string `json:"location"`
|
|
Description string `json:"description"`
|
|
Likes int64 `json:"likes"`
|
|
}
|