| 12345678910111213141516171819202122232425262728293031 |
- //
- // MOPkUserList.h
- //
- // Created by SuperCabbage on 2023/12/18
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOUserProfile;
- @interface MOPkUserList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *roomId;
- @property (nonatomic, assign) double winNum;
- @property (nonatomic, assign) double pkNum;
- @property (nonatomic, assign) double winRate;
- @property (nonatomic, strong) NSString *pkSecret;
- @property (nonatomic, strong) MOUserProfile *userProfile;
- @property (nonatomic, assign) double amount;
- @property (nonatomic, strong) NSString *invite;
- @property (nonatomic, assign) BOOL isSelect;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|