Files
Microsoft.SelfService.Porta…/Dto/DeploymentComposition/Get/GetDeploymentParameterValueDto.cs

14 lines
481 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Get
{
public class GetDeploymentParameterValueDto : BaseDto
{
public Guid DeploymentGroupId { get; set; }
public Guid? DeploymentTemplateSelectionId { get; set; }
public string Name { get; set; } = string.Empty;
public string ValueJson { get; set; } = "{}";
public bool IsSecretReference { get; set; }
public bool IsOverride { get; set; }
}
}