Files
server/src/Core/Services/IEventWriteService.cs
Justin Baur 231eb84e69 Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

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