23 lines
469 B
Objective-C
23 lines
469 B
Objective-C
//
|
|
// YMAnchorAttentSendInfo.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/2/15.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPAnchorAttentSendInfo : PIBaseModel
|
|
|
|
@property (assign, nonatomic) NSInteger uid;
|
|
@property (copy, nonatomic) NSString *nick;
|
|
@property (assign, nonatomic) NSInteger targetUid;
|
|
@property (copy, nonatomic) NSString *targetNick;
|
|
@property(nonatomic, strong)NSDictionary *encodeAttachemt;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|