1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-30 17:22:20 -05:00
bitwarden/src/Core/Services/IReferenceEventService.cs
2022-08-29 16:06:55 -04:00

9 lines
167 B
C#

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