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.

16 lines
268 B
C#
Raw Normal View History

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models;
2022-08-29 14:53:16 -04:00
public class Role : Core.Entities.Role
{
}
public class RoleMapperProfile : Profile
2022-08-29 14:53:16 -04:00
{
public RoleMapperProfile()
{
CreateMap<Core.Entities.Role, Role>().ReverseMap();
}
}