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