RootModeCell.h 435 B

1234567891011121314151617181920
  1. //
  2. // RootModeCell.h
  3. // RA Image
  4. //
  5. // Created by Jack on 2017/5/2.
  6. // Copyright © 2017年 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface RootModeCell : UITableViewCell
  10. @property (nonatomic,copy) NSString *mode;
  11. @property (nonatomic,copy) NSString *code_name;
  12. @property (nonatomic,assign) BOOL enable;
  13. @property (nonatomic,copy) NSString *desc;
  14. - (void) setMode:(NSString *)mode desc:(NSString *)desc;
  15. @end