
- 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
50 lines
1.4 KiB
Objective-C
50 lines
1.4 KiB
Objective-C
//
|
|
// DatingInfoModel.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/1/5.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "YUMINNNN.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DatingInfoModel : PIBaseModel
|
|
///头像
|
|
@property (nonatomic,strong) NSString *avatar;
|
|
///操作用户uid
|
|
@property (nonatomic,assign) NSInteger uid;
|
|
///操作用户昵称
|
|
@property (nonatomic,strong) NSString *nickname;
|
|
///当前操作的坑位
|
|
@property (nonatomic,assign) int position;
|
|
///目标用户uid
|
|
@property (nonatomic,assign) NSInteger targetUid;
|
|
///目标用户昵称
|
|
@property (nonatomic,strong) NSString *targetNickname;
|
|
///目标的头像
|
|
@property (nonatomic,strong) NSString *targetAvatar;
|
|
///操作用户麦位
|
|
@property (nonatomic,assign) int targetPosition;
|
|
///相亲步骤变更提示文案
|
|
@property (nonatomic,strong) NSString *content;
|
|
///是否有互选对象
|
|
@property (nonatomic,assign) BOOL hasHeart;
|
|
///是否有选择的对象
|
|
@property (nonatomic,assign) BOOL hasSelectUser;
|
|
/// 1 男性, 2 女性。
|
|
@property (nonatomic, assign) GenderType gender;
|
|
///目标用户的性别
|
|
@property (nonatomic,assign) GenderType targetGender;
|
|
///互选的时候动画
|
|
@property (nonatomic,strong) NSString *svgaUrl;
|
|
///SVGA的时长
|
|
@property (nonatomic,assign) int svgaSecond;
|
|
///起始地址的
|
|
@property (nonatomic,assign) CGPoint originPoint;
|
|
///目标地址的坐标
|
|
@property (nonatomic,assign) CGPoint targetPoint;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|