mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
13 lines
290 B
C#
13 lines
290 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikrotikAPI.Models
|
|
{
|
|
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; }
|
|
}
|
|
}
|