15 lines
458 B
C#
15 lines
458 B
C#
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; }
|
|
}
|
|
}
|