using Microsoft.SelfService.Portal.Core.API.Dto; namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateRevision.Get { public class GetTemplateRevisionDto : BaseDetailsDto { public Guid TemplateVersionId { get; set; } public int RevisionNumber { get; set; } public string JsonData { get; set; } = "{}"; public string JsonHash { get; set; } = string.Empty; public string SchemaVersion { get; set; } = "1.0"; public bool IsCurrent { get; set; } public bool IsPublished { get; set; } public DateTime? PublishedAt { get; set; } public string? PublishedBy { get; set; } } }