mirror of
https://github.com/bitwarden/server
synced 2026-01-09 03:53:42 +00:00
use EventTableEntity instead of TableEntity
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.WindowsAzure.Storage.Table;
|
||||
using Bit.Core.Models.Data;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public interface IEventWriteService
|
||||
{
|
||||
Task CreateAsync(ITableEntity entity);
|
||||
Task CreateManyAsync(IList<ITableEntity> entities);
|
||||
Task CreateAsync(EventTableEntity entity);
|
||||
Task CreateManyAsync(IList<EventTableEntity> entities);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user