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
Justin Baur 231eb84e69
Turn On ImplicitUsings (#2079)
* Turn on ImplicitUsings

* Fix formatting

* Run linter
2022-06-29 19:46:41 -04:00

10 lines
185 B
C#

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