mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 22:29:24 +02:00
Update Models
This commit is contained in:
parent
0dad0d1a04
commit
c36204dbb9
27 changed files with 509 additions and 5 deletions
20
Application/Models/Mikrotik/IPAddress.cs
Normal file
20
Application/Models/Mikrotik/IPAddress.cs
Normal file
|
@ -0,0 +1,20 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MTWireGuard.Application.Models.Mikrotik
|
||||
{
|
||||
public class IPAddressViewModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string ActualInterface { get; set; }
|
||||
public string Address { get; set; }
|
||||
public bool Enabled { get; set; }
|
||||
public bool Dynamic { get; set; }
|
||||
public string Interface { get; set; }
|
||||
public bool Valid { get; set; }
|
||||
public string Network { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue