Files
Servers/MoonlightServers.Shared/Http/Requests/Admin/ServerVariables/UpdateServerVariableRequest.cs

10 lines
312 B
C#

using System.ComponentModel.DataAnnotations;
namespace MoonlightServers.Shared.Http.Requests.Admin.ServerVariables;
public class UpdateServerVariableRequest
{
[Required(ErrorMessage = "You need to provide a key for the variable")]
public string Key { get; set; }
public string Value { get; set; }
}