summaryrefslogtreecommitdiff
path: root/Enum.cs
blob: a8fc5b556dc71672016321226a2f1fc332575e56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace HyperBooru;

public enum ObjectType {
    TagDefinition,
    Tag,
    Media,
    Collection
}

public enum TagSource {
    Internal,
    UserTag
}