12345678910111213141516171819202122 |
- //
- // Data.h
- //
- // Created by tederen on 18/11/19
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class File;
- @interface DatasModel : JSONModel
- @property (nonatomic ,assign) NSInteger Stretched;
- @property (nonatomic ,strong) NSString *Caption;
- @property (nonatomic ,assign) NSInteger WithBorder;
- @property (nonatomic ,assign) NSInteger WithBackground;
- @property (nonatomic, copy) NSString *Text ;
- @property (nonatomic ,strong) NSDictionary *File;
- @end
|