20 lines
324 B
Objective-C
20 lines
324 B
Objective-C
//
|
|
// XPGiftBannerUserInfoModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPGiftBannerUserInfoModel : NSObject
|
|
///
|
|
@property (nonatomic,assign) int position;
|
|
///
|
|
@property (nonatomic,assign) NSInteger uid;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|