namespace RobotNet10.CustomConfiguration.DTOs;
///
/// DTO cho ConfigFile (response)
///
public class ConfigFileDto
{
public Guid Id { get; set; }
public string ConfigType { get; set; } = string.Empty; // Tên định danh duy nhất
public List Variables { get; set; } = [];
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public string? Description { get; set; }
}