13 lines
430 B
C#
13 lines
430 B
C#
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
|
|
{
|
|
public class GetQueueJobTargetDto : BaseDto
|
|
{
|
|
public Guid VirtualMachineId { get; set; }
|
|
public Guid DeploymentGroupId { get; set; }
|
|
public Guid TemplateId { get; set; }
|
|
public string Status { get; set; } = string.Empty;
|
|
public int Attempts { get; set; }
|
|
public string? ErrorMessage { get; set; }
|
|
}
|
|
}
|