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 List<string> EnvLines { get; set; } = new();
|
|
|
|
|
public DateTime FetchedAt { get; set; } = DateTime.UtcNow;
|
|
|
|
|
}
|