Refactor code structure for improved readability and maintainability
This commit is contained in:
9
Dto/Deployment/Add/AddDeploymentRequestDto.cs
Normal file
9
Dto/Deployment/Add/AddDeploymentRequestDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add
|
||||
{
|
||||
public class AddDeploymentRequestDto
|
||||
{
|
||||
public Guid DeploymentGroupId { get; set; }
|
||||
public ICollection<Guid> VirtualMachineIds { get; set; } = new List<Guid>();
|
||||
public string JsonData { get; set; } = "{}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user