mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 00:18:17 +02:00
21 lines
514 B
C#
21 lines
514 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MTWireGuard.Models.Mikrotik
|
|
{
|
|
public class Log
|
|
{
|
|
[JsonProperty(".id")]
|
|
public string Id { get; set; }
|
|
public string Message { get; set; }
|
|
public string Time { get; set; }
|
|
public string Topics { get; set; }
|
|
}
|
|
|
|
public class LogViewModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Message { get; set; }
|
|
public string Time { get; set; }
|
|
public List<string> Topics { get; set; }
|
|
}
|
|
}
|