16 lines
524 B
C#
16 lines
524 B
C#
using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get;
|
|
|
|
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get
|
|
{
|
|
public class GetDeploymentTargetAssignmentDto : BaseDto
|
|
{
|
|
public Guid DeploymentGroupId { get; set; }
|
|
public Guid TargetId { get; set; }
|
|
public string RoleKey { get; set; } = string.Empty;
|
|
public int SortOrder { get; set; }
|
|
public string NodeDataJson { get; set; } = "{}";
|
|
public GetTargetDto? Target { get; set; }
|
|
}
|
|
}
|
|
|