Files
Denso/srcs/RobotNet10/Commons/RobotNet10.CustomConfiguration/Models/ConfigFileMetadata.cs
2026-07-03 16:31:37 +07:00

15 lines
458 B
C#

namespace RobotNet10.CustomConfiguration.Models;
/// <summary>
/// Metadata của config file (không bao gồm nội dung variables)
/// </summary>
public class ConfigFileMetadata
{
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; }
}