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

12 lines
392 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentRule.Get
{
public class GetDeploymentRuleDto : BaseDetailsDto
{
public string Name { get; set; }
public string? Description { get; set; }
public bool IsActive { get; set; }
public ICollection<GetDeploymentRuleStepDto> Steps { get; set; } = new List<GetDeploymentRuleStepDto>();
}
}