Jeddunk
1540e6cb7a
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.
13 lines
357 B
C#
13 lines
357 B
C#
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; }
|
|
}
|
|
} |