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; } } }