techgarage-ir.MTWireGuard/Application/Models/Requests/UpdateIPPoolRequest.cs
2024-01-25 20:36:44 +03:30

16 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; }
}
}