mirror of
https://github.com/bitwarden/server
synced 2025-12-18 01:03:17 +00:00
17 lines
339 B
C#
17 lines
339 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class Policy : Core.Entities.Policy
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
}
|
|
|
|
public class PolicyMapperProfile : Profile
|
|
{
|
|
public PolicyMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.Policy, Policy>().ReverseMap();
|
|
}
|
|
}
|