mirror of
https://github.com/bitwarden/server
synced 2025-12-17 00:33:23 +00:00
* Reference event service implementation * Fix IReferenceable implementation of Id * add structure to event body
13 lines
236 B
C#
13 lines
236 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace Bit.Core.Enums
|
|
{
|
|
public enum ReferenceEventSource
|
|
{
|
|
[EnumMember(Value = "organization")]
|
|
Organization,
|
|
[EnumMember(Value = "user")]
|
|
User,
|
|
}
|
|
}
|