mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-20 16:28:38 +00:00
21 lines
382 B
C#
21 lines
382 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ConfigGenerator.JSON {
|
|
internal static class Steam {
|
|
internal static class Item {
|
|
[SuppressMessage("ReSharper", "UnusedMember.Global")]
|
|
internal enum EType : byte {
|
|
Unknown,
|
|
BoosterPack,
|
|
Coupon,
|
|
Emoticon,
|
|
Gift,
|
|
FoilTradingCard,
|
|
ProfileBackground,
|
|
TradingCard,
|
|
SteamGems
|
|
}
|
|
}
|
|
}
|
|
}
|