mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-30 14:34:08 +02:00
* Ensure potential nulls have a fallback value & add/remove null checks * Refactor update check code to avoid nulls * Refactor ProfileManager exception handling to avoid nulls * Refactor a few more various classes and fix nulls in ContextInfo * Force c#7 everywhere and revert usage of newer features from cherry-picked commits * Remove unused #pragma declaration
13 lines
376 B
C#
13 lines
376 B
C#
namespace TweetDuck.Updates{
|
|
sealed class UpdaterSettings{
|
|
public string InstallerDownloadFolder { get; }
|
|
|
|
public bool AllowPreReleases { get; set; }
|
|
public string DismissedUpdate { get; set; }
|
|
|
|
public UpdaterSettings(string installerDownloadFolder){
|
|
this.InstallerDownloadFolder = installerDownloadFolder;
|
|
}
|
|
}
|
|
}
|