mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08:00
11 lines
205 B
C#
11 lines
205 B
C#
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IEventWriteService
|
|
{
|
|
Task CreateAsync(IEvent e);
|
|
Task CreateManyAsync(IEnumerable<IEvent> e);
|
|
}
|
|
}
|