mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
18 lines
388 B
C#
18 lines
388 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class SsoUser : Core.Entities.SsoUser
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
public virtual User User { get; set; }
|
|
}
|
|
|
|
public class SsoUserMapperProfile : Profile
|
|
{
|
|
public SsoUserMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.SsoUser, SsoUser>().ReverseMap();
|
|
}
|
|
}
|