Core.Thalos.Service.API/Core.Thalos.External/Clients/Requests/ModuleRequest.cs
2025-07-27 19:33:19 -06:00

17 lines
520 B
C#

using Core.Thalos.BuildingBlocks;
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!;
}
}