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; } = "{}"; } }