fix warnings; tidy up a bit more

This commit is contained in:
John Baughman
2024-06-13 16:44:08 -05:00
parent dea0e5696f
commit 7b60527446
5 changed files with 36 additions and 18 deletions

View File

@@ -2,5 +2,5 @@
internal class Message<T>
{
public T Value { get; set; }
public T? Value { get; set; }
}