diff --git a/Streetwriters.Common/Clients.cs b/Streetwriters.Common/Clients.cs index bd65a10..de31bc7 100644 --- a/Streetwriters.Common/Clients.cs +++ b/Streetwriters.Common/Clients.cs @@ -29,7 +29,7 @@ namespace Streetwriters.Common { public class Clients { - private static Client Notesnook = new Client + public static readonly Client Notesnook = new() { Id = "notesnook", Name = "Notesnook", @@ -53,7 +53,7 @@ namespace Streetwriters.Common } }; - public static Dictionary ClientsMap = new Dictionary + public static Dictionary ClientsMap = new() { { "notesnook", Notesnook } };