1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-14 22:27:32 -05:00
Files
bitwarden/src/Infrastructure.EntityFramework/Models/Device.cs
2022-08-29 16:06:55 -04:00

17 lines
323 B
C#

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models;
public class Device : Core.Entities.Device
{
public virtual User User { get; set; }
}
public class DeviceMapperProfile : Profile
{
public DeviceMapperProfile()
{
CreateMap<Core.Entities.Device, Device>().ReverseMap();
}
}