Konstantin Safonov 18f13665cb Code cleanup
2020-03-18 01:36:10 +03:00

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