Add project files.
This commit is contained in:
		| @@ -0,0 +1,56 @@ | ||||
| // *********************************************************************** | ||||
| // <copyright file="LogOperation.cs"> | ||||
| //     Heath | ||||
| // </copyright> | ||||
| // *********************************************************************** | ||||
|  | ||||
| using Lib.Common.LoggingAPI.Service.Constants; | ||||
| using System.Runtime.Serialization; | ||||
| using System.Text.Json.Serialization; | ||||
|  | ||||
| namespace Lib.Common.LoggingAPI.Service.DataTransferObjects.Logger | ||||
| { | ||||
|     /// <summary> | ||||
|     /// Represents all possible values for log operation. | ||||
|     /// </summary> | ||||
|     [DataContract] | ||||
|     public enum LogOperation | ||||
|     { | ||||
|         /// <summary> | ||||
|         /// The client request log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.ClientRequest)] | ||||
|         [JsonPropertyName(DisplayNames.ClientRequest)] | ||||
|         ClientRequest = 0, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// The client response log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.ClientResponse)] | ||||
|         ClientResponse = 1, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// The external request log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.ExternalRequest)] | ||||
|         ExternalRequest = 2, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// The external response log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.ExternalResponse)] | ||||
|         ExternalResponse = 3, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// The error log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.Error)] | ||||
|         Error = 4, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// The info log operation type. | ||||
|         /// </summary> | ||||
|         [EnumMember(Value = DisplayNames.Info)] | ||||
|         Info = 5, | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin