14 lines
320 B
C#
14 lines
320 B
C#
using RobotNet10.CustomConfiguration.DTOs;
|
|
|
|
namespace RobotNet10.CustomConfiguration.DTOs.Requests;
|
|
|
|
/// <summary>
|
|
/// Request DTO cho update config
|
|
/// </summary>
|
|
public class UpdateConfigRequest
|
|
{
|
|
public List<ConfigVariableDto>? Variables { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|
|
|