1
0
mirror of https://github.com/bitwarden/server synced 2025-12-24 12:13:17 +00:00
Files
server/src/Infrastructure.EntityFramework/Models/Event.cs

17 lines
316 B
C#

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models
{
public class Event : Core.Entities.Event
{
}
public class EventMapperProfile : Profile
{
public EventMapperProfile()
{
CreateMap<Core.Entities.Event, Event>().ReverseMap();
}
}
}