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

10 lines
271 B
C#

namespace MTWireGuard.Application.Models.Mikrotik
{
public class LogViewModel
{
public ulong Id { get; set; }
public string Message { get; set; }
public string Time { get; set; }
public List<string> Topics { get; set; }
}
}