initial commit
This commit is contained in:
14
Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs
Normal file
14
Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Dto.Deployment.Get;
|
||||
using Microsoft.SelfService.Portal.Core.API.Dto.Template.Get;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get
|
||||
{
|
||||
public class GetDeploymentGroupDetailsDto : BaseDto
|
||||
{
|
||||
public string Status { get; set; }
|
||||
|
||||
public GetTemplateDetailsDto Template { get; set; }
|
||||
|
||||
public ICollection <GetDeploymentDetailsDto> Deployments { get; set; }
|
||||
}
|
||||
}
|
||||
8
Dto/DeploymentGroup/Get/GetDeploymentGroupDto.cs
Normal file
8
Dto/DeploymentGroup/Get/GetDeploymentGroupDto.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Dto.DeploymentGroup.Get
|
||||
{
|
||||
public class GetDeploymentGroupDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user