// ***********************************************************************
// 
//     AgileWebs
// 
// ***********************************************************************
using System.Text.Json.Serialization;
namespace Core.Cerberos.Adapters.Common.Enums
{
    /// 
    /// Defines the applications associated with the role.
    /// 
    [JsonConverter(typeof(JsonStringEnumConverter))]
    public enum ApplicationsEnum
    {
        /// 
        /// LSA Web Portal application.
        /// 
        LSAWebPortal = 0,
        /// 
        /// Customer DashBoard application.
        /// 
        CustomerDashboard = 1,
        /// 
        /// Discover application.
        /// 
        Discover = 2,
        /// 
        /// LSA Mobile application.
        /// 
        LSAMobile = 3,
        /// 
        /// BluePrint application.
        /// 
        BluePrint = 4,
    }
}