DatasModel.h 503 B

12345678910111213141516171819202122
  1. //
  2. // Data.h
  3. //
  4. // Created by tederen on 18/11/19
  5. // Copyright © 2019 tederen. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class File;
  9. @interface DatasModel : JSONModel
  10. @property (nonatomic ,assign) NSInteger Stretched;
  11. @property (nonatomic ,strong) NSString *Caption;
  12. @property (nonatomic ,assign) NSInteger WithBorder;
  13. @property (nonatomic ,assign) NSInteger WithBackground;
  14. @property (nonatomic, copy) NSString *Text ;
  15. @property (nonatomic ,strong) NSDictionary *File;
  16. @end