Added tostring method for the fullgamepadsupport class.

This commit is contained in:
mmuffins 2018-06-23 10:13:15 +02:00
parent 254d2e2516
commit b29805c531

View File

@ -13,5 +13,10 @@ namespace SteamStorefrontAPI.Classes
{
[JsonProperty("full_gamepad")]
public bool FullGamepad { get; set; }
public override string ToString()
{
return FullGamepad.ToString();
}
}
}