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 Steps { get; set; } = new List(); } }