mirror of
https://github.com/bitwarden/server
synced 2026-01-17 07:53:36 +00:00
10 lines
183 B
C#
10 lines
183 B
C#
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IEventWriteService
|
|
{
|
|
Task CreateAsync(IEvent e);
|
|
Task CreateManyAsync(IEnumerable<IEvent> e);
|
|
}
|