techgarage-ir.MTWireGuard/MikrotikAPI/Models/Log.cs

14 lines
290 B
C#
Raw Normal View History

2023-03-03 23:24:18 +03:30
using Newtonsoft.Json;
2023-06-02 15:26:29 +03:30
namespace MikrotikAPI.Models
2023-03-03 23:24:18 +03:30
{
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; }
}
}