mirror of
https://github.com/bitwarden/server.git
synced 2026-02-06 17:13:10 +08:00
13 lines
295 B
C#
13 lines
295 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IEventWriteService
|
|
{
|
|
Task CreateAsync(EventTableEntity entity);
|
|
Task CreateManyAsync(IList<EventTableEntity> entities);
|
|
}
|
|
}
|