techgarage-ir.MTWireGuard/Application/Models/Requests/CreateScriptRequest.cs

11 lines
297 B
C#
Raw Normal View History

2024-01-25 20:36:44 +03:30
namespace MTWireGuard.Application.Models.Requests
{
public class CreateScriptRequest
{
public string Name { get; set; }
public List<string> Policy { get; set; }
public string Source { get; set; }
public bool DontRequiredPermissions { get; set; }
}
}