1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-01 13:43:23 +01:00
bitwarden-server/src/Core/Services/IReferenceEventService.cs

11 lines
215 B
C#
Raw Normal View History

using System.Threading.Tasks;
using Bit.Core.Models.Business;
namespace Bit.Core.Services
{
public interface IReferenceEventService
{
Task RaiseEventAsync(ReferenceEvent referenceEvent);
}
}