using Microsoft.SelfService.Portal.Core.API.Dto.TemplateVersion.Get; namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get { public class GetDeploymentTemplateSelectionDto : BaseDto { public Guid DeploymentGroupId { get; set; } public Guid TemplateVersionId { get; set; } public string TemplateRole { get; set; } = string.Empty; public int SortOrder { get; set; } public string? Alias { get; set; } public GetTemplateVersionDto? TemplateVersion { get; set; } } }