mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 13:58:09 +02:00
16 lines
409 B
C#
16 lines
409 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MikrotikAPI.Models
|
|
{
|
|
public class Job
|
|
{
|
|
[JsonProperty(".id")]
|
|
public string Id { get; set; }
|
|
[JsonProperty(".nextid")]
|
|
public string NextId { get; set; }
|
|
public string Owner { get; set; }
|
|
public string Policy { get; set; }
|
|
public string Started { get; set; }
|
|
public string Type { get; set; }
|
|
}
|
|
}
|