16 lines
552 B
C#
16 lines
552 B
C#
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; }
|
|
}
|
|
}
|
|
|