forked from neosmart/unicode.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroup.cs
52 lines (51 loc) · 1.42 KB
/
Group.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// This class is a part of the fork from neosmarts unicode.net (https://github.com/neosmart/unicode.net)
// Source: https://github.com/UWPX/unicode.net
// Original license:
// MIT License:
// https://github.com/UWPX/unicode.net/blob/master/LICENSE
namespace NeoSmart.Unicode
{
public enum Group
{
/// <summary>
/// The "Smileys & Emotion" emoji group.
/// </summary>
SMILEYS_AND_EMOTION = 0,
/// <summary>
/// The "People & Body" emoji group.
/// </summary>
PEOPLE_AND_BODY = 1,
/// <summary>
/// The "Component" emoji group.
/// </summary>
COMPONENT = 2,
/// <summary>
/// The "Animals & Nature" emoji group.
/// </summary>
ANIMALS_AND_NATURE = 3,
/// <summary>
/// The "Food & Drink" emoji group.
/// </summary>
FOOD_AND_DRINK = 4,
/// <summary>
/// The "Travel & Places" emoji group.
/// </summary>
TRAVEL_AND_PLACES = 5,
/// <summary>
/// The "Activities" emoji group.
/// </summary>
ACTIVITIES = 6,
/// <summary>
/// The "Objects" emoji group.
/// </summary>
OBJECTS = 7,
/// <summary>
/// The "Symbols" emoji group.
/// </summary>
SYMBOLS = 8,
/// <summary>
/// The "Flags" emoji group.
/// </summary>
FLAGS = 9,
}
}