1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 17:12:49 -05:00
Files
bitwarden/src/Infrastructure.EntityFramework/Models/Grant.cs

17 lines
316 B
C#

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