LANCommander/LANCommander.SDK/Models/Settings/GameSettings.cs

11 lines
303 B
C#
Raw Permalink Normal View History

namespace LANCommander.SDK.Models;
2025-09-26 00:33:59 -05:00
public class GameSettings
{
public string[] InstallDirectories { get; set; } = [];
/// <summary>
/// Number of times to attempt downloading and extracting a game before giving up.
/// </summary>
public int MaxInstallAttempts { get; set; } = 10;
}