If you were still handling message ids as integers in an environment that can't handle signed 64-bit integers you're going to be having a fun time after this update!
10 lines
207 B
C#
10 lines
207 B
C#
namespace SharpChat.EventStorage {
|
|
[Flags]
|
|
public enum StoredEventFlags {
|
|
None = 0,
|
|
Action = 1,
|
|
Broadcast = 1 << 1,
|
|
Log = 1 << 2,
|
|
Private = 1 << 3,
|
|
}
|
|
}
|