17 lines
		
	
	
		
			527 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			527 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Core.Thalos.Adapters.Common.Enums;
 | |
| using System.Text.Json.Serialization;
 | |
| 
 | |
| namespace Core.Thalos.External.Clients.Requests
 | |
| {
 | |
|     public class ModuleRequest
 | |
|     {
 | |
|         public string Name { get; set; } = null!;
 | |
|         public string? Description { get; set; }
 | |
|         public string? Icon { get; set; }
 | |
|         public string? Route { get; set; }
 | |
|         public int? Order { get; set; }
 | |
|         [JsonConverter(typeof(JsonStringEnumConverter))]
 | |
|         public ApplicationsEnum? Application { get; set; } = null!;
 | |
|     }
 | |
| }
 | 
