Started implementing star crud

This commit is contained in:
2024-12-05 17:27:17 +01:00
parent 3b77b3df1e
commit 291b80cc60
13 changed files with 342 additions and 79 deletions

View File

@@ -0,0 +1,20 @@
using MoonlightServers.Shared.Enums;
namespace MoonlightServers.Shared.Http.Responses.Admin.StarVariables;
public class StarVariableDetailResponse
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Key { get; set; }
public string DefaultValue { get; set; }
public bool AllowViewing { get; set; }
public bool AllowEditing { get; set; }
public StarVariableType Type { get; set; }
public string? Filter { get; set; }
}