LANCommander/LANCommander.Steam/GameSearchResult.cs

13 lines
230 B
C#
Raw Permalink Normal View History

2024-06-27 00:29:49 -05:00
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.Steam
{
public class GameSearchResult
{
public string Name { get; set; }
public int AppId { get; set; }
}
}