namespace RobotNet10.CustomConfiguration.DTOs; /// /// DTO cho ConfigFileMetadata (list view) /// public class ConfigFileMetadataDto { public Guid Id { get; set; } public string ConfigType { get; set; } = string.Empty; // Tên định danh duy nhất public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } public string? Description { get; set; } }