mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
15 lines
377 B
C#
15 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; }
|
|||
|
}
|
|||
|
}
|