diff options
author | Vitaly Takmazov | 2017-10-15 23:47:11 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-10-15 23:47:11 +0300 |
commit | 8ae952ec8df2a713afeaef5960a88888e050c6fc (patch) | |
tree | b7b09deed573336e5d274eed790c30ba57e4a910 /Juick/Model/Attachment.h | |
parent | 6499148cb3f62e20534b62c181125ebeacfa3438 (diff) |
WIP
Diffstat (limited to 'Juick/Model/Attachment.h')
-rw-r--r-- | Juick/Model/Attachment.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Juick/Model/Attachment.h b/Juick/Model/Attachment.h new file mode 100644 index 0000000..26fc1c0 --- /dev/null +++ b/Juick/Model/Attachment.h @@ -0,0 +1,18 @@ +// +// Attachment.h +// Juick +// +// Created by Vitaly Takmazov on 15/10/2017. +// Copyright © 2017 com.juick. All rights reserved. +// + +#import <Foundation/Foundation.h> + +@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; +@end |