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