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

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();
}
}