1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-19 12:08:11 -05:00
2022-08-29 16:06:55 -04:00

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