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 Deployments { get; set; } } }