techgarage-ir.MTWireGuard/Application/Models/Mikrotik/Job.cs

15 lines
381 B
C#
Raw Normal View History

2023-06-02 15:26:29 +03:30
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; }
}
}