2022-01-11 10:40:51 +01:00
|
|
|
|
using AutoMapper;
|
|
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models
|
2022-01-11 10:40:51 +01:00
|
|
|
|
{
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public class SsoConfig : Core.Entities.SsoConfig
|
|
|
|
|
|
{
|
|
|
|
|
|
public virtual Organization Organization { get; set; }
|
|
|
|
|
|
}
|
2022-01-11 10:40:51 +01:00
|
|
|
|
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public class SsoConfigMapperProfile : Profile
|
2022-01-11 10:40:51 +01:00
|
|
|
|
{
|
2022-08-29 15:53:48 -04:00
|
|
|
|
public SsoConfigMapperProfile()
|
|
|
|
|
|
{
|
|
|
|
|
|
CreateMap<Core.Entities.SsoConfig, SsoConfig>().ReverseMap();
|
|
|
|
|
|
}
|
2022-01-11 10:40:51 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|