DisplayMagician/HeliosDisplayManagement/GameLibraries/SteamAppInfoParser/App.cs
temacdonald 8f41b94427 [WIP] Massive redevelopment to alter shortcut form
Added in a binary VDF reader to find and figure out all
of the Game Icons, Exe locations, Names, Ids and
Install Dirs all from the local file syste,m. It makes the
shortcuts populate within 1 second, rather than the
60 seconds it was taking beforehand. Users should
love the newfound responsiveness.
2020-04-27 22:55:44 +12:00

30 lines
640 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ValveKeyValue;
namespace HeliosPlus.GameLibraries.SteamAppInfoParser
{
public class App
{
public uint AppID { get; set; }
public uint Size { get; set; }
public uint InfoState { get; set; }
public DateTime LastUpdated { get; set; }
public ulong Token { get; set; }
public ReadOnlyCollection<byte> Hash { get; set; }
public uint ChangeNumber { get; set; }
public KVObject Data { get; set; }
}
}