DisplayMagician/HeliosDisplayManagement/Uplay/UplayAppIdNamePair.cs
temacdonald 6bfb3edfba [WIP] Added basic Uplay files based on Steam
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.
2020-04-14 22:20:41 +12:00

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; }
}
}