Notes/NoteContext.cs
2023-03-09 22:06:21 -05:00

7 lines
184 B
C#

namespace BinaryDad.Notes
{
public static class NoteContext
{
public static IDictionary<string, string> ClientNotes { get; } = new Dictionary<string, string>();
}
}