mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-28 22:08:08 +02:00
15 lines
381 B
C#
15 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; }
|
|||
|
}
|
|||
|
}
|