mirror of
https://github.com/bitwarden/server
synced 2025-12-18 09:13:19 +00:00
19 lines
444 B
C#
19 lines
444 B
C#
using AutoMapper;
|
|
using Bit.Infrastructure.EntityFramework.AdminConsole.Models;
|
|
|
|
namespace Bit.Infrastructure.EntityFramework.Models;
|
|
|
|
public class Send : Core.Tools.Entities.Send
|
|
{
|
|
public virtual Organization Organization { get; set; }
|
|
public virtual User User { get; set; }
|
|
}
|
|
|
|
public class SendMapperProfile : Profile
|
|
{
|
|
public SendMapperProfile()
|
|
{
|
|
CreateMap<Core.Tools.Entities.Send, Send>().ReverseMap();
|
|
}
|
|
}
|