mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-22 12:51:42 +03:00
16 lines
344 B
Objective-C
16 lines
344 B
Objective-C
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "MSAbstractLog.h"
|
|
|
|
@interface MSLogWithProperties : MSAbstractLog
|
|
|
|
/**
|
|
* Additional key/value pair parameters. [optional]
|
|
*/
|
|
@property(nonatomic) NSDictionary<NSString *, NSString *> *properties;
|
|
|
|
@end
|