Files
OTSSignsOrchestrator/OTSSignsOrchestrator.Core/Models/DTOs/TemplateConfig.cs
2026-02-27 17:48:21 -05:00

14 lines
434 B
C#

namespace OTSSignsOrchestrator.Core.Models.DTOs;
public class TemplateConfig
{
public string Yaml { get; set; } = string.Empty;
public DateTime FetchedAt { get; set; } = DateTime.UtcNow;
/// <summary>
/// Local filesystem path to the cached git clone.
/// Used to access additional template files (e.g. settings-custom.php.template).
/// </summary>
public string CacheDir { get; set; } = string.Empty;
}