1234567891011121314151617181920212223242526 |
- //
- // PBUserInfo.h
- // PBSDK
- //
- // Created by hello on 2024/12/29.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBUserInfo : NSObject
- @property (nonatomic, copy ) NSString *id;
- @property (nonatomic, copy ) NSString *nickname;
- @property (nonatomic, copy ) NSString *mobile;
- @property (nonatomic, copy ) NSString *imPassword;
- @property (nonatomic, copy ) NSString *imUserName;
- @end
- NS_ASSUME_NONNULL_END
|