20 lines
305 B
C
20 lines
305 B
C
|
|
//
|
||
|
|
// LMSingListModel.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/31.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface LMSingListModel : NSObject
|
||
|
|
|
||
|
|
@property (nonatomic, assign) NSInteger is_sign;
|
||
|
|
@property (nonatomic, strong) NSString *award;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|