Add UserProfilePhotos type

This commit is contained in:
Dan 2018-03-09 14:47:12 +01:00
parent 59f1fd9ee6
commit 345da2fccd

View File

@ -0,0 +1,6 @@
class UserProfilePhotos:
def __init__(self,
total_count: int,
photos: list):
self.total_count = total_count
self.photos = photos