mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
Add project files.
This commit is contained in:
commit
b2325a46ef
1351 changed files with 48136 additions and 0 deletions
26
Models/Mikrotik/Job.cs
Normal file
26
Models/Mikrotik/Job.cs
Normal file
|
@ -0,0 +1,26 @@
|
|||
using Newtonsoft.Json;
|
||||
|
||||
namespace MTWireGuard.Models.Mikrotik
|
||||
{
|
||||
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; }
|
||||
}
|
||||
|
||||
public class JobViewModel
|
||||
{
|
||||
public short Id { get; set; }
|
||||
public short NextId { get; set; }
|
||||
public string Owner { get; set; }
|
||||
public List<string> Policies { get; set; }
|
||||
public string Started { get; set; }
|
||||
public string Type { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue