mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
16 lines
274 B
C#
16 lines
274 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();
|
|
}
|
|
}
|