Files
BQP/srcs/RobotNet10/Components/RobotNet10.CustomConfigurationEditor/Models/ConfigFileMetadataModel.cs
2026-07-13 09:25:40 +07:00

15 lines
458 B
C#

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