1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-03 14:03:33 +01:00
bitwarden-server/src/Core/Services/IEventWriteService.cs

13 lines
263 B
C#
Raw Normal View History

2017-12-04 15:58:07 +01:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Models.Data;
2017-12-04 15:58:07 +01:00
namespace Bit.Core.Services
{
public interface IEventWriteService
{
2017-12-09 05:09:50 +01:00
Task CreateAsync(IEvent e);
Task CreateManyAsync(IList<IEvent> e);
2017-12-04 15:58:07 +01:00
}
}