Notes/NoteContext.cs

7 lines
184 B
C#
Raw Permalink Normal View History

2023-03-10 03:06:21 +00:00
namespace BinaryDad.Notes
{
public static class NoteContext
{
public static IDictionary<string, string> ClientNotes { get; } = new Dictionary<string, string>();
}
}