15 lines
451 B
C#
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; }
|
|
}
|
|
|