1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 20:23:21 +00:00
Files
server/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();
}
}