1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 20:23:21 +00:00
Files
server/src/Infrastructure.EntityFramework/Models/SsoUser.cs
2022-08-29 16:06:55 -04:00

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