mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-12 16:23:32 +01: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
|