13 lines
427 B
C#
13 lines
427 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentComposition.Add
|
|
{
|
|
public class AddDeploymentParameterValueDto
|
|
{
|
|
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; } = true;
|
|
}
|
|
}
|
|
|