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

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

17 lines
339 B
C#
Raw Normal View History

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