techgarage-ir.MTWireGuard/MikrotikAPI/Models/ActiveUser.cs
2023-06-28 18:01:39 +03:30

15 lines
374 B
C#

using Newtonsoft.Json;
namespace MikrotikAPI.Models
{
public class ActiveUser
{
[JsonProperty(".id")]
public string Id { get; set; }
public string Group { get; set; }
public string Name { get; set; }
public bool Radius { get; set; }
public string Via { get; set; }
public string When { get; set; }
}
}