Files
real-e-party-iOS/YuMi/Modules/YMMine/Model/Visitor/XPMineVisitorItemModel.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +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