1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-01 01:32:16 -05:00
bitwarden/src/Core/Services/IReferenceEventService.cs
2022-08-29 14:53:16 -04:00

9 lines
167 B
C#

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