hank
2017-03-28 956fbaca250acc07249127fdff6ffa8ca984b0d7
commit | author | age
3eceb5 1 //
W 2 //  VKPhotoSize.h
3 //  sdk
4 //
5 //  Created by Roman Truba on 11.08.14.
6 //  Copyright (c) 2014 VK. All rights reserved.
7 //
8
9 #import "VKApiObjectArray.h"
10
11 @interface VKPhotoSize : VKApiObject
12 @property(nonatomic, readwrite, copy) NSString *src;
13 @property(nonatomic, readwrite, copy) NSNumber *width;
14 @property(nonatomic, readwrite, copy) NSNumber *height;
15 @property(nonatomic, readwrite, copy) NSString *type;
16 @end
17
18 @interface VKPhotoSizes : VKApiObjectArray<VKPhotoSize*>
19 - (VKPhotoSize *)photoSizeWithType:(NSString *)type;
20 @end