mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 15:13:19 +08:00
18 lines
322 B
C#
18 lines
322 B
C#
|
|
using AutoMapper;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.EntityFramework
|
|||
|
|
{
|
|||
|
|
public class Cipher : Table.Cipher
|
|||
|
|
{
|
|||
|
|
public User User { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class CipherMapperProfile : Profile
|
|||
|
|
{
|
|||
|
|
public CipherMapperProfile()
|
|||
|
|
{
|
|||
|
|
CreateMap<Table.Cipher, Cipher>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|