Files
Microsoft.SelfService.Porta…/Dto/Deployment/Get/GetDeploymentDto.cs

14 lines
379 B
C#

using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get;
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
{
public class GetDeploymentDto : BaseDto
{
public Guid DeploymentGroupId { get; set; }
public Guid TargetId { get; set; }
public string Status { get; set; }
public string JSONData { get; set; }
}
}