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

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

17 lines
310 B
C#
Raw Normal View History

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models
{
public class Role : Core.Entities.Role
{
}
public class RoleMapperProfile : Profile
{
public RoleMapperProfile()
{
CreateMap<Core.Entities.Role, Role>().ReverseMap();
}
}
}