using RobotNet10.CustomConfiguration.DTOs; namespace RobotNet10.CustomConfiguration.DTOs.Requests; /// /// Request DTO cho tạo config mới /// public class CreateConfigRequest { public string ConfigType { get; set; } = string.Empty; // Tên định danh duy nhất (ví dụ: MQTTBrokerConfig) public List Variables { get; set; } = []; public string? Description { get; set; } }