namespace RobotNet10.CustomConfigurationEditor.Models; /// /// Model cho ConfigFile trong frontend /// public class ConfigFileModel { public Guid Id { get; set; } public string ConfigType { get; set; } = string.Empty; // Tên định danh duy nhất public List Variables { get; set; } = new(); public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } public string? Description { get; set; } }