mirror of
https://github.com/EpicMorg/SteamPathsLib.git
synced 2025-04-15 05:22:34 +03:00
14 lines
267 B
C#
14 lines
267 B
C#
namespace EpicMorg.SteamPathsLib.Model
|
|
{
|
|
public class SteamAppManifestData
|
|
{
|
|
public int AppId { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string InstallDir { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
}
|
|
}
|