| 123456789101112131415161718192021222324 |
- //
- // MOPrivilegeSetModel.h
- // MiMoLive
- //
- // Created by SuperC on 2024/8/13.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOPrivilegeSetModel : NSObject
- @property (nonatomic, strong) NSString *keyStr;
- @property (nonatomic, strong) NSString *titleStr;
- @property (nonatomic, strong) NSString *contentStr;
- @property (nonatomic, assign) BOOL isChoose;
- @end
- NS_ASSUME_NONNULL_END
|