using System; namespace SharpChat.EventStorage { [Flags] public enum StoredEventFlags { None = 0, Action = 1, Broadcast = 1 << 1, Log = 1 << 2, Private = 1 << 3, } }