From 59aa6065ebb3481e50c13ec6b4850448fe66186a Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Thu, 28 Apr 2022 01:46:21 +0300 Subject: FSE Procedures Remote Notifications. --- .../Notifications/RemoteMessageBoxRequest.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs new file mode 100644 index 000000000..6ea6c9024 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Shared.Notifications +{ + public class RemoteMessageBoxRequest + { + public RemoteMessageBoxType Type { get; set; } + public String Message { get; set; } + public TimeSpan? Timeout { get; set; } + } +} -- cgit v1.3.1