2023-06-02 15:26:29 +03:30
|
|
|
|
namespace MTWireGuard.Application.Models.Mikrotik
|
|
|
|
|
{
|
2024-01-25 20:36:44 +03:30
|
|
|
|
public class IdentityViewModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class IdentityUpdateModel
|
2023-06-02 15:26:29 +03:30
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|