mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
13 lines
266 B
C#
13 lines
266 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MTWireGuard.Application.Models.Requests
|
|
{
|
|
public class UpdateIdentityRequest
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
}
|