mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 22:53:12 +08:00
18 lines
434 B
C#
18 lines
434 B
C#
using AutoMapper;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Auth.Models;
|
|
|
|
public class SsoConfig : Core.Auth.Entities.SsoConfig
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
}
|
|
|
|
public class SsoConfigMapperProfile : Profile
|
|
{
|
|
public SsoConfigMapperProfile()
|
|
{
|
|
CreateMap<Core.Auth.Entities.SsoConfig, SsoConfig>().ReverseMap();
|
|
}
|
|
}
|