15 lines
458 B
C#
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; }
|
|
}
|
|
|