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.

17 lines
316 B
C#
Raw Normal View History

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