mirror of
https://github.com/bitwarden/server.git
synced 2025-05-01 01:32:16 -05:00
9 lines
167 B
C#
9 lines
167 B
C#
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Services;
|
|
|
|
public interface IReferenceEventService
|
|
{
|
|
Task RaiseEventAsync(ReferenceEvent referenceEvent);
|
|
}
|