You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
642 B
C#
21 lines
642 B
C#
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace DepotDownloader
|
|
{
|
|
class DownloadConfig
|
|
{
|
|
public int CellID { get; set; }
|
|
public bool DownloadAllPlatforms { get; set; }
|
|
public bool PreferBetaVersions { get; set; }
|
|
public bool DownloadManifestOnly { get; set; }
|
|
public string InstallDirectory { get; set; }
|
|
|
|
public bool UsingFileList { get; set; }
|
|
public List<string> FilesToDownload { get; set; }
|
|
public List<Regex> FilesToDownloadRegex { get; set; }
|
|
|
|
public bool UsingExclusionList { get; set; }
|
|
}
|
|
}
|