1
0
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:
Chad Scharf
2020-07-07 12:01:34 -04:00
committed by GitHub
parent b4524fbcb6
commit 7af50172e0
12 changed files with 248 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using System.Runtime.Serialization;
namespace Bit.Core.Enums
{
public enum ReferenceEventSource
{
[EnumMember(Value = "organization")]
Organization,
[EnumMember(Value = "user")]
User,
}
}