Files
server/src/Infrastructure.EntityFramework/Models/SsoConfig.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
357 B
C#
Raw Normal View History

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models;
2022-08-29 16:06:55 -04:00
public class SsoConfig : Core.Entities.SsoConfig
{
public virtual Organization Organization { get; set; }
}
public class SsoConfigMapperProfile : Profile
2022-08-29 16:06:55 -04:00
{
public SsoConfigMapperProfile()
{
CreateMap<Core.Entities.SsoConfig, SsoConfig>().ReverseMap();
}
}