Games have icon and logo

This commit is contained in:
2025-05-26 17:02:13 +02:00
parent 89a0dc1bc2
commit e11390f632
6 changed files with 229 additions and 5 deletions

View File

@ -1,3 +1,3 @@
namespace SteamApiWrapper.ReturnTypes;
public record Game(ulong appid, ulong playtime_forever, string name);
public record Game(ulong appid, ulong playtime_forever, string name, string? img_icon_url, string? img_logo_url);