namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add { public class AddDeploymentTemplateSelectionDto { public Guid TemplateVersionId { get; set; } public Guid? TemplateRevisionId { get; set; } public string TemplateRole { get; set; } = "Service"; public int SortOrder { get; set; } public string? Alias { get; set; } } }