13 lines
306 B
C#
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;
|
|
}
|
|
}
|
|
|