From f41b38c96499e599e396a9775e386f0e1e606911 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Fri, 7 Jun 2024 15:40:05 +0500 Subject: [PATCH] common: expose clients to public --- Streetwriters.Common/Clients.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } };