Some checks failed
Build and Publish Docker Image / build-and-push (push) Has been cancelled
8 lines
198 B
C#
8 lines
198 B
C#
namespace OTSSignsOrchestrator.Core.Models.DTOs;
|
|
|
|
public class TemplateConfig
|
|
{
|
|
public string Yaml { get; set; } = string.Empty;
|
|
public DateTime FetchedAt { get; set; } = DateTime.UtcNow;
|
|
}
|