12 lines
349 B
C#
12 lines
349 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add
|
|
{
|
|
public class AddDeploymentTemplateSelectionDto
|
|
{
|
|
public Guid TemplateVersionId { get; set; }
|
|
public string TemplateRole { get; set; } = "Service";
|
|
public int SortOrder { get; set; }
|
|
public string? Alias { get; set; }
|
|
}
|
|
}
|
|
|