mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 03:13:16 +08:00
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,
|
|||
|
|
}
|
|||
|
|
}
|