mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
This is a basic copy and rename of the Steam files within the app. Will be developing the Uplay discovery functionality over the following weeks.
18 lines
364 B
C#
18 lines
364 B
C#
namespace HeliosDisplayManagement.Uplay
|
|
{
|
|
public class UplayAppIdNamePair
|
|
{
|
|
public UplayAppIdNamePair(uint appId, string name)
|
|
{
|
|
AppId = appId;
|
|
Name = name;
|
|
}
|
|
|
|
public UplayAppIdNamePair()
|
|
{
|
|
}
|
|
|
|
public uint AppId { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
} |