12 lines
383 B
C#
12 lines
383 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Add
|
|
{
|
|
public class AddDeploymentRuleDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
public ICollection<AddDeploymentRuleStepDto> Steps { get; set; } = new List<AddDeploymentRuleStepDto>();
|
|
}
|
|
}
|
|
|