43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| // ***********************************************************************
 | |
| // <copyright file="ApplicationsEnum.cs">
 | |
| //     AgileWebs
 | |
| // </copyright>
 | |
| // ***********************************************************************
 | |
| 
 | |
| using System.Text.Json.Serialization;
 | |
| 
 | |
| namespace Core.Cerberos.Adapters.Common.Enums
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Defines the applications associated with the role.
 | |
|     /// </summary>
 | |
|     [JsonConverter(typeof(JsonStringEnumConverter))]
 | |
|     public enum ApplicationsEnum
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// LSA Web Portal application.
 | |
|         /// </summary>
 | |
|         LSAWebPortal = 0,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Customer DashBoard application.
 | |
|         /// </summary>
 | |
|         CustomerDashboard = 1,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Discover application.
 | |
|         /// </summary>
 | |
|         Discover = 2,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// LSA Mobile application.
 | |
|         /// </summary>
 | |
|         LSAMobile = 3,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// BluePrint application.
 | |
|         /// </summary>
 | |
|         BluePrint = 4,
 | |
|     }
 | |
| }
 | 
