17 lines
520 B
C#
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!;
|
|
}
|
|
}
|