techgarage-ir.MTWireGuard/Application/Models/Mikrotik/ActiveUser.cs

15 lines
377 B
C#
Raw Normal View History

2023-06-02 15:26:29 +03:30
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; }
}
}