Add PhotoSize type

This commit is contained in:
Dan 2018-03-09 14:45:06 +01:00
parent 18c20f0ca5
commit 48bf7438b7

View File

@ -0,0 +1,10 @@
class PhotoSize:
def __init__(self,
file_id: str,
width: int,
height: int,
file_size: int):
self.file_id = file_id
self.width = width
self.height = height
self.file_size = file_size