Files
Microsoft.SelfService.Porta…/Dto/DeploymentBatch/Get/GetDeploymentBatchDto.cs

13 lines
306 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentBatch.Get
{
public class GetDeploymentBatchDto : BaseDetailsDto
{
public Guid TemplateId { get; set; }
public Guid? DeploymentRuleId { get; set; }
public string Status { get; set; } = string.Empty;
}
}