mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-29 22:29:24 +02:00
17 lines
391 B
C#
17 lines
391 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 UpdateIPPoolRequest
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string? Next { get; set; }
|
|||
|
public List<string> Ranges { get; set; }
|
|||
|
}
|
|||
|
}
|