mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
17 lines
316 B
C#
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|