Add project files.

This commit is contained in:
Sergio Matias Urquin
2025-04-29 18:57:20 -06:00
parent 62e9799537
commit d5925a6476
44 changed files with 2716 additions and 0 deletions

View 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
}
}