1
bot/models/photo_size.go

11 lines
296 B
Go
Raw Permalink Normal View History

2022-04-29 17:21:42 +08:00
package models
// PhotoSize https://core.telegram.org/bots/api#photosize
type PhotoSize struct {
FileID string `json:"file_id"`
FileUniqueID string `json:"file_unique_id"`
Width int `json:"width"`
Height int `json:"height"`
FileSize int `json:"file_size"`
}