15 lines
394 B
C#
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; }
|
|
}
|
|
}
|
|
|