Files
server/src/Infrastructure.EntityFramework/Models/Event.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
274 B
C#
Raw Normal View History

using AutoMapper;
namespace Bit.Infrastructure.EntityFramework.Models;
2022-08-29 16:06:55 -04:00
public class Event : Core.Entities.Event
{
}
public class EventMapperProfile : Profile
2022-08-29 16:06:55 -04:00
{
public EventMapperProfile()
{
CreateMap<Core.Entities.Event, Event>().ReverseMap();
}
}