mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-30 06:39:27 +02:00
11 lines
297 B
C#
11 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; }
|
|||
|
}
|
|||
|
}
|