mirror of
https://github.com/techgarage-ir/MTWireGuard.git
synced 2025-08-18 08:28:17 +02:00
14 lines
330 B
C#
14 lines
330 B
C#
|
using Microsoft.AspNetCore.Mvc;
|
|||
|
using Microsoft.Build.Framework;
|
|||
|
|
|||
|
namespace MTWireGuard.Models.Requests
|
|||
|
{
|
|||
|
public class ChangeStateRequest
|
|||
|
{
|
|||
|
[FromQuery(Name = "ID"), Required]
|
|||
|
public int Id { get; set; }
|
|||
|
[FromQuery(Name = "IsEnabled"), Required]
|
|||
|
public bool Enabled { get; set; }
|
|||
|
}
|
|||
|
}
|