Files
peko-ios/YuMi/Modules/YMMine/Model/Visitor/XPMineVisitorItemModel.h
2023-11-15 17:25:09 +08:00

25 lines
555 B
Objective-C

//
// YMMineVisitorItemModel.h
// YUMI
//
// Created by YUMI on 2022/1/26.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPMineVisitorItemModel : PIBaseModel
///生日
@property(nonatomic,assign) long birth;
@property (nonatomic, copy) NSString *avatar;
@property (nonatomic, assign) NSInteger erbanNo;
@property (nonatomic, assign) NSInteger gender;
@property (nonatomic, copy) NSString *nick;
@property (nonatomic, assign) long long uid;
@property (nonatomic, copy) NSString *visitTimeDesc;
@end
NS_ASSUME_NONNULL_END