This commit is contained in:
Ryan Peters
2023-03-09 22:06:21 -05:00
parent 5fa4fe6fb5
commit b89a557af1
3 changed files with 25 additions and 2 deletions

7
NoteContext.cs Normal file
View File

@ -0,0 +1,7 @@
namespace BinaryDad.Notes
{
public static class NoteContext
{
public static IDictionary<string, string> ClientNotes { get; } = new Dictionary<string, string>();
}
}