Files
Microsoft.SelfService.Porta…/Dto/AddEnvironmentDomainDto.cs

10 lines
207 B
C#

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