mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
18 lines
364 B
C#
18 lines
364 B
C#
|
namespace HeliosDisplayManagement.Steam
|
|||
|
{
|
|||
|
public class SteamAppIdNamePair
|
|||
|
{
|
|||
|
public SteamAppIdNamePair(uint appId, string name)
|
|||
|
{
|
|||
|
AppId = appId;
|
|||
|
Name = name;
|
|||
|
}
|
|||
|
|
|||
|
public SteamAppIdNamePair()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public uint AppId { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|