mirror of
https://github.com/bitwarden/server.git
synced 2024-12-01 13:43:23 +01:00
7af50172e0
* Reference event service implementation * Fix IReferenceable implementation of Id * add structure to event body
11 lines
215 B
C#
11 lines
215 B
C#
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Business;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public interface IReferenceEventService
|
|
{
|
|
Task RaiseEventAsync(ReferenceEvent referenceEvent);
|
|
}
|
|
}
|