12 lines
345 B
C#
12 lines
345 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add
|
|
{
|
|
public class AddDeploymentTargetAssignmentDto
|
|
{
|
|
public Guid TargetId { get; set; }
|
|
public string RoleKey { get; set; } = "Node";
|
|
public int SortOrder { get; set; }
|
|
public string NodeDataJson { get; set; } = "{}";
|
|
}
|
|
}
|
|
|