DisplayMagician/HeliosPlus/GameLibraries/SteamAppInfoParser/App.cs

30 lines
640 B
C#
Raw Normal View History

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