namespace Microsoft.SelfService.Portal.Core.API.Dto.TemplateRevision.Add { public class AddTemplateRevisionDto { public string JsonData { get; set; } = "{}"; public string SchemaVersion { get; set; } = "1.0"; public bool Publish { get; set; } public string? PublishedBy { get; set; } } }