Files
Denso/srcs/RobotNet10/Commons/RobotNet10.CustomConfiguration/DTOs/Requests/UpdateConfigRequest.cs
2026-07-03 16:31:37 +07:00

14 lines
320 B
C#

using RobotNet10.CustomConfiguration.DTOs;
namespace RobotNet10.CustomConfiguration.DTOs.Requests;
/// <summary>
/// Request DTO cho update config
/// </summary>
public class UpdateConfigRequest
{
public List<ConfigVariableDto>? Variables { get; set; }
public string? Description { get; set; }
}