use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Deserialize, Serialize)]
pub struct PhotoSize {
/// Identifier for this file, which can be used to download or reuse the file
pub file_id: String,
/// Photo width
pub width: i64,
/// Photo height
pub height: i64,
/// File size
pub file_size: Option<i64>,
}