mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 14:28:09 +02:00
13 lines
270 B
C#
13 lines
270 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 UpdateDNSRequest
|
|
{
|
|
public List<string> Servers { get; set; }
|
|
}
|
|
}
|