initial commit
This commit is contained in:
12
Dto/Deployment/Add/AddDeploymentDto.cs
Normal file
12
Dto/Deployment/Add/AddDeploymentDto.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Add
|
||||
{
|
||||
public class AddDeploymentDto
|
||||
{
|
||||
public Guid DeploymentGroupId { get; set; }
|
||||
public Guid VirtualMachineId { get; set; }
|
||||
|
||||
public string Status { get; set; }
|
||||
public string JsonData { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
19
Dto/Deployment/Edit/EditDeploymentDto.cs
Normal file
19
Dto/Deployment/Edit/EditDeploymentDto.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Edit
|
||||
{
|
||||
public class EditDeploymentDto
|
||||
{
|
||||
[Column(Order = 1)]
|
||||
public string Status { get; set; }
|
||||
|
||||
[Column(Order = 2)]
|
||||
public string jsonData { get; set; }
|
||||
|
||||
[Column(Order = 1)]
|
||||
public Guid VirtualMachineId { get; set; }
|
||||
[Column(Order = 1)]
|
||||
public Guid DeploymentGroupId { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
16
Dto/Deployment/Get/GetDeploymentDetailsDto.cs
Normal file
16
Dto/Deployment/Get/GetDeploymentDetailsDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get;
|
||||
using Microsoft.SelfService.Portal.Core.API.Dto.VirtualMachine.Get;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
|
||||
{
|
||||
public class GetDeploymentDetailsDto : BaseDetailsDto
|
||||
{
|
||||
public string Status { get; set; }
|
||||
public string JSONData { get; set; }
|
||||
|
||||
public GetVirtualMachineDetailsDto VirtualMachine { get; set; }
|
||||
|
||||
public GetDeploymentGroupDetailsDto DeploymentGroup { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
10
Dto/Deployment/Get/GetDeploymentDto.cs
Normal file
10
Dto/Deployment/Get/GetDeploymentDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get
|
||||
{
|
||||
public class GetDeploymentDto : BaseDto
|
||||
{
|
||||
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user