// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. #import #ifndef MSAC_LOG_WITH_NAME_PROPERTIES_H #define MSAC_LOG_WITH_NAME_PROPERTIES_H #if __has_include() #import #else #import "MSACLogWithProperties.h" #endif NS_SWIFT_NAME(LogWithNameAndProperties) @interface MSACLogWithNameAndProperties : MSACLogWithProperties /** * Name of the event. */ @property(nonatomic, copy) NSString *name; @end #endif