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