| 123456789101112131415161718192021222324252627 |
- //
- // MOLiveMemberData.h
- //
- // Created by SuperCabbage on 2023/11/23
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOLiveMemberData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *next;
- @property (nonatomic, strong) NSArray *userBase;
- @property (nonatomic, assign) double vipMembers;
- @property (nonatomic, assign) double memberMembers;
- @property (nonatomic, assign) double manageMembers;
- @property (nonatomic, assign) double vipMember2;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|