mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
12 lines
236 B
C#
12 lines
236 B
C#
namespace MTWireGuard.Application.Models.Mikrotik
|
|
{
|
|
public class IdentityViewModel
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
public class IdentityUpdateModel
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
}
|