Add project files.
This commit is contained in:
		
							
								
								
									
										32
									
								
								Core.Cerberos.Adapters/Common/Enums/StatusEnum.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								Core.Cerberos.Adapters/Common/Enums/StatusEnum.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | ||||
| // *********************************************************************** | ||||
| // <copyright file="StatusEnum.cs"> | ||||
| //     Heath | ||||
| // </copyright> | ||||
| // *********************************************************************** | ||||
|  | ||||
| using System.Text.Json.Serialization; | ||||
|  | ||||
| namespace Core.Cerberos.Adapters.Common.Enums | ||||
| { | ||||
|     /// <summary> | ||||
|     /// Defines the status of an entity. | ||||
|     /// </summary> | ||||
|     [JsonConverter(typeof(JsonStringEnumConverter))] | ||||
|     public enum StatusEnum | ||||
|     { | ||||
|         /// <summary> | ||||
|         /// Indicates the entity is active. | ||||
|         /// </summary> | ||||
|         Active = 0, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Indicates the entity is inactive. | ||||
|         /// </summary> | ||||
|         Inactive = 1, | ||||
|  | ||||
|         /// <summary> | ||||
|         /// Indicates the entity is deleted. | ||||
|         /// </summary> | ||||
|         Deleted = 2 | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Sergio Matias Urquin
					Sergio Matias Urquin