You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
519 B
17 lines
519 B
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface UMONCustomEventBuilder : NSObject |
|
@property (nonatomic) NSString* category; |
|
@property (nonatomic) NSString* type; |
|
@property (nonatomic) NSDictionary* userInfo; |
|
@end |
|
|
|
@interface UMONCustomEvent : NSObject |
|
@property (strong) NSString* category; |
|
@property (strong) NSString* type; |
|
@property (strong) NSDictionary* userInfo; |
|
-(instancetype)initWithBuilder:(UMONCustomEventBuilder*)builder; |
|
+(instancetype)build:(void (^)(UMONCustomEventBuilder *))buildBlock; |
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|