1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 12:13:17 +00:00
Files
server/src/Infrastructure.EntityFramework/Models/SsoUser.cs

19 lines
438 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();
}
}
}