Notes/NoteContext.cs

7 lines
184 B
C#
Raw Normal View History

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