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