MOPrivilegeSetModel.h 415 B

123456789101112131415161718192021222324
  1. //
  2. // MOPrivilegeSetModel.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/8/13.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface MOPrivilegeSetModel : NSObject
  10. @property (nonatomic, strong) NSString *keyStr;
  11. @property (nonatomic, strong) NSString *titleStr;
  12. @property (nonatomic, strong) NSString *contentStr;
  13. @property (nonatomic, assign) BOOL isChoose;
  14. @end
  15. NS_ASSUME_NONNULL_END