Initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user