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

9 lines
206 B
C#

namespace Microsoft.SelfService.Portal.Core.API.Dto
{
public class AddEnvironmentDomainDto
{
public Guid EnvironmentId { get; set; }
public Guid DomainId { get; set; }
}
}