techgarage-ir.MTWireGuard/Models/Mikrotik/EtherIP.cs

13 lines
257 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
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; }
}
}