1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-05 02:34:07 +02:00

Turn WindowsUtils.Browser fields into get-only properties

This commit is contained in:
chylex 2018-01-21 04:25:06 +01:00
parent 3422b4d4d6
commit 4d64243a07

View File

@ -178,8 +178,8 @@ IEnumerable<Browser> ReadBrowsersFromKey(RegistryHive hive){
}
public sealed class Browser{
public readonly string Name;
public readonly string Path;
public string Name { get; }
public string Path { get; }
public Browser(string name, string path){
this.Name = name;