2023-06-20 12:08:50 -07:00

14 lines
397 B
C#

namespace Adaptation.FileHandlers.TIBCO.SignalR;
public readonly struct Notification
{
public KeyPressEvent KeyPressEvent { get; }
public string LastScanServiceResultValue { get; }
public Notification(KeyPressEvent keyPressEvent, string lastScanServiceResultValue)
{
KeyPressEvent = keyPressEvent;
LastScanServiceResultValue = lastScanServiceResultValue;
}
}