1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 21:23:39 +00:00

[AC-2972] AC Team ownership: Events (2/2) (#4675)

This commit is contained in:
Thomas Rittson
2024-08-21 09:03:26 +10:00
committed by GitHub
parent fb270b538e
commit 9a7165b489
16 changed files with 0 additions and 0 deletions

View File

@@ -1,15 +0,0 @@
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();
}
}