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