mirror of
https://github.com/bitwarden/server.git
synced 2024-12-02 13:53:23 +01:00
13 lines
263 B
C#
13 lines
263 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IEventWriteService
|
|
{
|
|
Task CreateAsync(IEvent e);
|
|
Task CreateManyAsync(IList<IEvent> e);
|
|
}
|
|
}
|