Files
Microsoft.SelfService.Porta…/Dto/DeploymentGroup/Get/GetDeploymentGroupDetailsDto.cs
2026-04-15 15:02:32 +02:00

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; }
}
}