// // Attachment.h // Juick // // Created by Vitaly Takmazov on 15/10/2017. // Copyright © 2017 com.juick. All rights reserved. // #import @interface Attachment : NSObject @property(nonatomic, strong) NSString *url; @property(nonatomic, strong) NSNumber *width; @property(nonatomic, strong) NSNumber *height; @property(nonatomic, strong) Attachment *small; @property(nonatomic, strong) Attachment *medium; @property(nonatomic, strong) Attachment *thumbnail; +(Attachment *) fromJSON:(NSDictionary *)jsonData; @end