mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
13 lines
303 B
C#
13 lines
303 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.WindowsAzure.Storage.Table;
|
|||
|
|
|||
|
namespace Bit.Core.Services
|
|||
|
{
|
|||
|
public interface IEventWriteService
|
|||
|
{
|
|||
|
Task CreateAsync(ITableEntity entity);
|
|||
|
Task CreateManyAsync(IList<ITableEntity> entities);
|
|||
|
}
|
|||
|
}
|