1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 20:23:21 +00:00
Files
server/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();
}
}
}