mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00

* chore: set up a `CODEOWNERS` space for platform * chore: move sql objects for `Installation` to platform's domain * chore: move `Installation` and `PushRelay` code to platform's domain
20 lines
643 B
C#
20 lines
643 B
C#
using AutoMapper;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
|
using Bit.Infrastructure.EntityFramework.Platform;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Billing.Models;
|
|
|
|
public class OrganizationInstallation : Core.Billing.Entities.OrganizationInstallation
|
|
{
|
|
public virtual Installation Installation { get; set; }
|
|
public virtual Organization Organization { get; set; }
|
|
}
|
|
|
|
public class OrganizationInstallationMapperProfile : Profile
|
|
{
|
|
public OrganizationInstallationMapperProfile()
|
|
{
|
|
CreateMap<Core.Billing.Entities.OrganizationInstallation, OrganizationInstallation>().ReverseMap();
|
|
}
|
|
}
|