Refactor code structure for improved readability and maintainability
This commit is contained in:
12
Dto/Deployment/Get/GetQueueJobTargetDto.cs
Normal file
12
Dto/Deployment/Get/GetQueueJobTargetDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user