1
bot/models/photo_size.go
2022-04-29 12:21:42 +03:00

11 lines
296 B
Go

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"`
}