Files
Microsoft.SelfService.Porta…/Dto/DeploymentRule/Get/GetDeploymentRuleStepDto.cs

13 lines
380 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Get
{
public class GetDeploymentRuleStepDto : BaseDetailsDto
{
public int SortOrder { get; set; }
public string Name { get; set; }
public string StepType { get; set; }
public bool RequiresApproval { get; set; }
public string? MetadataJson { get; set; }
}
}