mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 08:33:10 +08:00
18 lines
481 B
C#
18 lines
481 B
C#
|
|
using AutoMapper;
|
|||
|
|
|
|||
|
|
namespace Bit.Infrastructure.EntityFramework.Models
|
|||
|
|
{
|
|||
|
|
public class OrganizationConnection : Core.Entities.OrganizationConnection
|
|||
|
|
{
|
|||
|
|
public virtual Organization Organization { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class OrganizationConnectionMapperProfile : Profile
|
|||
|
|
{
|
|||
|
|
public OrganizationConnectionMapperProfile()
|
|||
|
|
{
|
|||
|
|
CreateMap<Core.Entities.OrganizationConnection, OrganizationConnection>().ReverseMap();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|