10 lines
164 B
C#
10 lines
164 B
C#
namespace TOOHUCardAPI.Data.Enums
|
|
{
|
|
public enum Rarity
|
|
{
|
|
NORMAL = 1,
|
|
RARE = 2,
|
|
SUPER_RARE = 3,
|
|
SUPER_SECRET_RARE = 4
|
|
}
|
|
} |