28 lines
		
	
	
		
			708 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			708 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| // ***********************************************************************
 | |
| // <copyright file="ApplicationsEnum.cs">
 | |
| //     AgileWebs
 | |
| // </copyright>
 | |
| // ***********************************************************************
 | |
| 
 | |
| using System.Text.Json.Serialization;
 | |
| 
 | |
| namespace Core.Thalos.BuildingBlocks
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Defines the applications associated with the role.
 | |
|     /// </summary>
 | |
|     [JsonConverter(typeof(JsonStringEnumConverter))]
 | |
|     public enum ApplicationsEnum
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Thalos application.
 | |
|         /// </summary>
 | |
|         Thalos = 0,
 | |
| 
 | |
|         /// <summary>
 | |
|         /// DreamViewer application.
 | |
|         /// </summary>
 | |
|         DreamViewer = 1,
 | |
|     }
 | |
| }
 |