mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
12 lines
257 B
C#
12 lines
257 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MTWireGuard.Models.Mikrotik
|
|
{
|
|
public class EtherIP
|
|
{
|
|
[JsonProperty(".id")]
|
|
public string Id { get; set; }
|
|
public string Address { get; set; }
|
|
}
|
|
}
|