13 lines
297 B
Objective-C
13 lines
297 B
Objective-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
|