mirror of
https://github.com/bitwarden/server.git
synced 2025-04-19 12:08:11 -05:00
17 lines
357 B
C#
17 lines
357 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class SsoConfig : Core.Entities.SsoConfig
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
}
|
|
|
|
public class SsoConfigMapperProfile : Profile
|
|
{
|
|
public SsoConfigMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.SsoConfig, SsoConfig>().ReverseMap();
|
|
}
|
|
}
|