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

17 lines
409 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 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; }
}
}