mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 21:01:31 +03:00
22 lines
436 B
Objective-C
22 lines
436 B
Objective-C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#import "MSLogWithNameAndProperties.h"
|
|
|
|
@class MSEventProperties;
|
|
@class MSMetadataExtension;
|
|
|
|
@interface MSEventLog : MSLogWithNameAndProperties
|
|
|
|
/**
|
|
* Unique identifier for this event.
|
|
*/
|
|
@property(nonatomic, copy) NSString *eventId;
|
|
|
|
/**
|
|
* Event properties.
|
|
*/
|
|
@property(nonatomic, strong) MSEventProperties *typedProperties;
|
|
|
|
@end
|