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

15 lines
394 B
C#

using Microsoft.SelfService.Portal.Core.API.Dto.Target.Get;
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
{
public class GetDeploymentDetailsDto : BaseDetailsDto
{
public Guid TargetId { get; set; }
public string Status { get; set; }
public string JSONData { get; set; }
public GetTargetDetailsDto Target { get; set; }
}
}