mirror of
https://github.com/bitwarden/server
synced 2025-12-17 08:43:27 +00:00
Reference event service implementation (#811)
* Reference event service implementation * Fix IReferenceable implementation of Id * add structure to event body
This commit is contained in:
12
src/Core/Enums/ReferenceEventSource.cs
Normal file
12
src/Core/Enums/ReferenceEventSource.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum ReferenceEventSource
|
||||
{
|
||||
[EnumMember(Value = "organization")]
|
||||
Organization,
|
||||
[EnumMember(Value = "user")]
|
||||
User,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user