namespace BlueLaminate.Scraper.Weapons;
/// A single CS2 weapon parsed from the Counter-Strike wiki.
/// Display name, e.g. "AK-47".
/// Category from the wiki heading, e.g. "Pistols", "Assault Rifles".
/// "CT", "T", or "Both".
public sealed record ScrapedWeapon(string Name, string Type, string Team);