mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-30 06:39:27 +02:00
15 lines
265 B
C#
15 lines
265 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikrotikAPI.Models
|
|
{
|
|
public class MTIdentity
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class MTIdentityUpdateModel
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|