minor fixes and renamings for intro landing page

This commit is contained in:
Stanley Dimant
2022-06-22 01:28:42 +02:00
parent 9bf1a7cf36
commit 99e80aeb4d
6 changed files with 17 additions and 11 deletions

View File

@@ -22,9 +22,10 @@ namespace MareSynchronos
get => string.IsNullOrEmpty(_apiUri) ? ApiController.MainServiceUri : _apiUri;
set => _apiUri = value;
}
public bool UseCustomService { get; set; }
public bool InitialScanComplete { get; set; }
public bool AcceptedAgreement { get; set; }
public bool UseCustomService { get; set; } = false;
public bool InitialScanComplete { get; set; } = false;
public bool AcceptedAgreement { get; set; } = false;
private int _maxParallelScan = 10;
public int MaxParallelScan
{