techgarage-ir.MTWireGuard/Application/Models/Mikrotik/Job.cs
2023-06-28 18:01:39 +03:30

14 lines
381 B
C#

using Newtonsoft.Json;
namespace MTWireGuard.Application.Models.Mikrotik
{
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; }
}
}