mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-23 13:22:02 +03:00
18 lines
303 B
C
18 lines
303 B
C
|
#import "MSLogWithNameAndProperties.h"
|
||
|
|
||
|
@class MSEventProperties;
|
||
|
|
||
|
@interface MSEventLog : MSLogWithNameAndProperties
|
||
|
|
||
|
/**
|
||
|
* Unique identifier for this event.
|
||
|
*/
|
||
|
@property(nonatomic, copy) NSString *eventId;
|
||
|
|
||
|
/**
|
||
|
* Event properties.
|
||
|
*/
|
||
|
@property(nonatomic) MSEventProperties *typedProperties;
|
||
|
|
||
|
@end
|