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

14 lines
377 B
C#

using Newtonsoft.Json;
namespace MTWireGuard.Application.Models.Mikrotik
{
public class ActiveUserViewModel
{
public short 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 LoggedIn { get; set; }
}
}