Fix the PhotoSize type

This commit is contained in:
Temirkhan Myrzamadi 2019-09-04 14:04:30 +06:00
parent c47e4c03ac
commit 5b8f8f587d

View file

@ -2,6 +2,6 @@
pub struct PhotoSize {
pub file_id: String,
pub width: i32,
pub heigth: i32,
pub height: i32,
pub file_size: Option<u32>,
}