public enum EventCategoryType
{
[EnumMember( Value = "undefined" )]
Undefined,
[EnumMember( Value = "diagnostics" )]
[TitleLocalized( typeof( Resources.EventCategoryTypeTitle ) )]
[DescriptionLocalized( typeof( Resources.EventCategoryTypeDescription ) )]
Diagnostics,
[EnumMember( Value = "warning" )]
[TitleLocalized( typeof( Resources.EventCategoryTypeTitle ) )]
[DescriptionLocalized( typeof( Resources.EventCategoryTypeDescription ) )]
Warning
}
public enum EventCategoryType
{
[EnumMember( Value = "undefined" )]
Undefined,
[EnumMember( Value = "diagnostics" )]
[TitleLocalized( typeof( Resources.EventCategoryTypeTitle ) )]
[DescriptionLocalized( typeof( Resources.EventCategoryTypeDescription ) )]
Diagnostics,
[EnumMember( Value = "warning" )]
[TitleLocalized( typeof( Resources.EventCategoryTypeTitle ) )]
[DescriptionLocalized( typeof( Resources.EventCategoryTypeDescription ) )]
Warning
}