mirror of
https://github.com/bitwarden/server
synced 2025-12-11 13:53:40 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using Bit.Core.Models.Data;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IEventMessageHandler
|
|
{
|
|
Task HandleEventAsync(EventMessage eventMessage);
|
|
|
|
Task HandleManyEventsAsync(IEnumerable<EventMessage> eventMessages);
|
|
}
|