| 123456789101112131415161718192021222324 |
- //
- // MOBaseInterrupt.h
- //
- // Created by SuperCabbage on 2025/1/10
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOBaseInterrupt : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) BOOL vip;
- @property (nonatomic, assign) BOOL medal;
- @property (nonatomic, assign) BOOL level;
- @property (nonatomic, assign) BOOL gift;
- @property (nonatomic, assign) BOOL prop;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|