mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-24 20:42:46 +01:00
10 lines
114 B
C#
10 lines
114 B
C#
using System;
|
|
|
|
namespace DHT.Server.Data;
|
|
|
|
[Flags]
|
|
public enum EmojiFlags : ushort {
|
|
None = 0,
|
|
Animated = 0b1
|
|
}
|