SignalR.Client => SelfHost

This commit is contained in:
2023-06-27 10:00:11 -07:00
parent cc4473ffa8
commit 97d1a1c6a7
12 changed files with 124 additions and 119 deletions

View File

@ -0,0 +1,15 @@
namespace Adaptation.FileHandlers.MoveAllFiles.ApiController;
public readonly struct Notification
{
public KeyPressEvent KeyPressEvent { get; }
public string LastScanServiceResultValue { get; }
[System.Text.Json.Serialization.JsonConstructor]
public Notification(KeyPressEvent keyPressEvent, string lastScanServiceResultValue)
{
KeyPressEvent = keyPressEvent;
LastScanServiceResultValue = lastScanServiceResultValue;
}
}