13 lines
297 B
C
13 lines
297 B
C
|
|
#import "TDEventModel.h"
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface TDFirstEventModel : TDEventModel
|
||
|
|
|
||
|
|
- (instancetype)initWithEventName:(NSString * _Nullable)eventName;
|
||
|
|
|
||
|
|
- (instancetype)initWithEventName:(NSString * _Nullable)eventName firstCheckID:(NSString *)firstCheckID;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|