add csfloat api usage
This commit is contained in:
@@ -3,6 +3,8 @@ namespace BlueLaminate.Scraper.Skins;
|
||||
/// <summary>A single CS2 skin from the CSGO-API static catalogue (skins.json).</summary>
|
||||
/// <param name="Id">Stable catalogue id, e.g. "skin-e757fd7191f9". Globally unique natural key.</param>
|
||||
/// <param name="WeaponName">Owning weapon, e.g. "AK-47", "Hand Wraps", "Bayonet".</param>
|
||||
/// <param name="DefIndex">CS weapon definition index (weapon.weapon_id), e.g. AK-47=7. Null if absent.</param>
|
||||
/// <param name="PaintIndex">Paint index identifying the finish, e.g. 985. Null if absent.</param>
|
||||
/// <param name="Category">Weapon category, e.g. "Rifles", "Knives", "Gloves". Becomes the weapon type.</param>
|
||||
/// <param name="Team">"CT", "T", or "Both".</param>
|
||||
/// <param name="Name">Skin/pattern name, e.g. "Dragon Lore"; "Vanilla" for knives with no finish.</param>
|
||||
@@ -17,6 +19,8 @@ namespace BlueLaminate.Scraper.Skins;
|
||||
public sealed record CatalogSkin(
|
||||
string Id,
|
||||
string WeaponName,
|
||||
int? DefIndex,
|
||||
int? PaintIndex,
|
||||
string Category,
|
||||
string Team,
|
||||
string Name,
|
||||
|
||||
Reference in New Issue
Block a user