Files
yinmeng-ios/xplan-ios/Main/Login/Model/ThirdUserInfo.h
2021-10-27 21:40:10 +08:00

21 lines
331 B
Objective-C

//
// ThirdUserInfo.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/13.
//
#import "NSObject+MJExtension.h"
NS_ASSUME_NONNULL_BEGIN
@interface ThirdUserInfo : NSObject
///用户名
@property (nonatomic,copy) NSString *userName;
///头像的地址
@property (nonatomic,copy) NSString *avatarUrl;
@end
NS_ASSUME_NONNULL_END