23 lines
421 B
Objective-C
Executable File
23 lines
421 B
Objective-C
Executable File
//
|
|
// SPPKUserInfo.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/14.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPPKUserInfo : NSObject
|
|
|
|
@property(nonatomic, copy) NSString *nick_name;
|
|
@property(nonatomic, copy) NSString *uid;
|
|
@property(nonatomic, copy) NSString *head_pic;
|
|
|
|
@property(nonatomic, assign) NSInteger type;//自定义 1是红队 2是蓝队
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|