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