1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-23 20: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 sealed class Browser{
public readonly string Name; public string Name { get; }
public readonly string Path; public string Path { get; }
public Browser(string name, string path){ public Browser(string name, string path){
this.Name = name; this.Name = name;