techgarage-ir.MTWireGuard/UI/Models/Requests/CreateServerRequest.cs

16 lines
326 B
C#
Raw Normal View History

2023-06-02 15:26:29 +03:30
namespace MTWireGuard.Models.Requests
2023-03-03 23:24:18 +03:30
{
public class CreateServerRequest
{
public string Name { get; set; }
public ushort Port { get; set; } = 13231;
public ushort MTU { get; set; } = 1420;
public string PrivateKey { get; set; }
public bool Enabled { get; set; }
}
}