mirror of
https://github.com/EpicMorg/SteamPathsLib.git
synced 2025-04-15 13:32:31 +03:00
12 lines
249 B
C#
12 lines
249 B
C#
namespace EpicMorg.SteamPathsLib.Model
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
public class LibrarySteamData
|
|
{
|
|
public List<SteamAppManifestData> AppManifestDataList { get; set; }
|
|
|
|
public string Path { get; set; }
|
|
}
|
|
}
|