FormFields.h 622 B

12345678910111213141516171819202122232425
  1. //
  2. // FormFields.h
  3. // smartRhino
  4. //
  5. // Created by tederen on 2019/11/19.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "BaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface FormFields : BaseModel
  11. @property (nonatomic ,strong) NSString *Label;
  12. @property (nonatomic ,strong) NSString *Type;
  13. @property (nonatomic ,assign) NSInteger Sort;
  14. @property (nonatomic ,assign) NSInteger Id;
  15. @property (nonatomic ,strong) NSString *Unit;
  16. @property (nonatomic ,strong) NSString *Placeholder;
  17. @property (nonatomic ,strong) NSArray *Options;
  18. @property (nonatomic ,assign) NSInteger Required;
  19. @end
  20. NS_ASSUME_NONNULL_END