mirror of
https://github.com/bitwarden/server.git
synced 2025-04-20 04:28:13 -05:00
18 lines
370 B
C#
18 lines
370 B
C#
using AutoMapper;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class Send : Core.Entities.Send
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
public virtual User User { get; set; }
|
|
}
|
|
|
|
public class SendMapperProfile : Profile
|
|
{
|
|
public SendMapperProfile()
|
|
{
|
|
CreateMap<Core.Entities.Send, Send>().ReverseMap();
|
|
}
|
|
}
|