14 lines
226 B
C#
14 lines
226 B
C#
using System;
|
|
|
|
namespace SharpChat.EventStorage
|
|
{
|
|
[Flags]
|
|
public enum StoredEventFlags
|
|
{
|
|
None = 0,
|
|
Action = 1,
|
|
Broadcast = 1 << 1,
|
|
Log = 1 << 2,
|
|
Private = 1 << 3,
|
|
}
|
|
}
|