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