1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 12:43:14 +00:00
Files
server/src/Core/Services/IEventWriteService.cs
2017-12-08 23:09:50 -05:00

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);
}
}