mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 17:12:49 -05:00
17 lines
316 B
C#
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();
|
|
}
|
|
}
|
|
}
|