10 lines
130 B
C#
10 lines
130 B
C#
namespace SPTarkov.Server.Core.Models.Enums;
|
|
|
|
public enum LootRarity
|
|
{
|
|
Not_exist = -1,
|
|
Common,
|
|
Rare,
|
|
Superrare,
|
|
}
|