Fixed crashes related to DLC.

Removed depot name value.
This commit is contained in:
Jeddunk 2021-04-28 13:51:06 +02:00
parent e17b0a18ca
commit fd518e4504
4 changed files with 16 additions and 10 deletions

View file

@ -67,8 +67,14 @@ namespace GoldbergGUI.Core.Models
public class DlcApp : SteamApp
{
/// <summary>
/// ID of depot (optional)
/// </summary>
public int? DepotId { get; set; }
public string DepotName { get; set; }
//public string DepotName { get; set; }
/// <summary>
/// Path to DLC (relative to Steam API DLL) (optional)
/// </summary>
public string AppPath { get; set; }
}