12345678910111213141516171819202122232425 |
- //
- // FormFields.h
- // smartRhino
- //
- // Created by tederen on 2019/11/19.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import "BaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface FormFields : BaseModel
- @property (nonatomic ,strong) NSString *Label;
- @property (nonatomic ,strong) NSString *Type;
- @property (nonatomic ,assign) NSInteger Sort;
- @property (nonatomic ,assign) NSInteger Id;
- @property (nonatomic ,strong) NSString *Unit;
- @property (nonatomic ,strong) NSString *Placeholder;
- @property (nonatomic ,strong) NSArray *Options;
- @property (nonatomic ,assign) NSInteger Required;
- @end
- NS_ASSUME_NONNULL_END
|