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

15 lines
451 B
C#

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