Files
Microsoft.SelfService.Porta…/Dto/DeploymentRule/Add/AddDeploymentRuleStepDto.cs

13 lines
363 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Add
{
public class AddDeploymentRuleStepDto
{
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; }
}
}