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.

18 lines
403 B
C#
Raw Normal View History

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