sharp-chat/SharpChat/EventStorage/StoredEventFlags.cs
2025-04-25 15:49:46 +00:00

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,
}
}