// ***********************************************************************
// 
//     Heath
// 
// ***********************************************************************
using System.Text.Json.Serialization;
namespace Core.Cerberos.Adapters.Common.Enums
{
    /// 
    /// Defines the status of an entity.
    /// 
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public enum StatusEnum
    {
        /// 
        /// Indicates the entity is active.
        /// 
        Active = 0,
        /// 
        /// Indicates the entity is inactive.
        /// 
        Inactive = 1,
        /// 
        /// Indicates the entity is deleted.
        /// 
        Deleted = 2
    }
}