14 lines
397 B
C#
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;
|
|
}
|
|
|
|
} |