mirror of
https://github.com/bitwarden/server.git
synced 2025-06-07 11:40:31 -05:00
17 lines
435 B
C#
17 lines
435 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class UserSignatureKeyPair : Core.KeyManagement.Entities.UserSignatureKeyPair
|
|
{
|
|
public virtual User User { get; set; }
|
|
}
|
|
|
|
public class UserSignatureKeyPairMapperProfile : Profile
|
|
{
|
|
public UserSignatureKeyPairMapperProfile()
|
|
{
|
|
CreateMap<Core.KeyManagement.Entities.UserSignatureKeyPair, UserSignatureKeyPair>().ReverseMap();
|
|
}
|
|
}
|