techgarage-ir.MTWireGuard/MikrotikAPI/Models/ActiveUser.cs

16 lines
374 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
using Newtonsoft.Json;
2023-06-02 15:26:29 +03:30
namespace MikrotikAPI.Models
2023-03-03 23:24:18 +03:30
{
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; }
}
}