mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-23 10:58:17 +02:00
Add project files.
This commit is contained in:
commit
b2325a46ef
1351 changed files with 48136 additions and 0 deletions
16
Models/Requests/UpdateClientRequest.cs
Normal file
16
Models/Requests/UpdateClientRequest.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
namespace MTWireGuard.Models.Requests
|
||||
{
|
||||
public class UpdateClientRequest
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Endpoint { get; set; }
|
||||
public ushort EndpointPort { get; set; }
|
||||
public string AllowedAddress { get; set; }
|
||||
public string PresharedKey { get; set; }
|
||||
public string PrivateKey { get; set; }
|
||||
public string PublicKey { get; set; }
|
||||
public string Interface { get; set; }
|
||||
public int KeepAlive { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue