11 lines
296 B
Go
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"`
|
|
}
|