mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 22:29:24 +02:00
10 lines
297 B
C#
10 lines
297 B
C#
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; }
|
|
}
|
|
}
|