2026-02-18 10:43:27 -05:00
|
|
|
namespace OTSSignsOrchestrator.Core.Models.DTOs;
|
2026-02-12 15:24:25 -05:00
|
|
|
|
|
|
|
|
public class TemplateConfig
|
|
|
|
|
{
|
|
|
|
|
public string Yaml { get; set; } = string.Empty;
|
|
|
|
|
public DateTime FetchedAt { get; set; } = DateTime.UtcNow;
|
2026-02-27 17:48:21 -05:00
|
|
|
|
|
|
|
|
/// <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;
|
2026-02-12 15:24:25 -05:00
|
|
|
}
|