Added new class GoldbergConfiguration.
Global settings can now be saved and reset. Language can now be edited (globally). If Cache is broken, try to forcibly update it from the API.
This commit is contained in:
parent
2b9ee795fb
commit
1540e6cb7a
5 changed files with 252 additions and 87 deletions
13
GoldbergGUI.Core/Models/GoldbergModel.cs
Normal file
13
GoldbergGUI.Core/Models/GoldbergModel.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace GoldbergGUI.Core.Models
|
||||
{
|
||||
public class GoldbergConfiguration
|
||||
{
|
||||
public int AppId { get; set; }
|
||||
public List<SteamApp> DlcList { get; set; }
|
||||
public bool Offline { get; set; }
|
||||
public bool DisableNetworking { get; set; }
|
||||
public bool DisableOverlay { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue