mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-30 06:39:27 +02:00
16 lines
354 B
C#
16 lines
354 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 CreatePoolRequest
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public string? Next { get; set; }
|
|||
|
public List<string> Ranges { get; set; }
|
|||
|
}
|
|||
|
}
|