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

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; }
}
}