9 lines
249 B
C#
9 lines
249 B
C#
namespace OTSSignsOrchestrator.Models.DTOs;
|
|
|
|
public class TemplateConfig
|
|
{
|
|
public string Yaml { get; set; } = string.Empty;
|
|
public List<string> EnvLines { get; set; } = new();
|
|
public DateTime FetchedAt { get; set; } = DateTime.UtcNow;
|
|
}
|