namespace RobotNet10.CustomConfigurationEditor.Models; /// /// Model cho ConfigFileMetadata trong frontend (list view) /// public class ConfigFileMetadataModel { 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; } }