diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2022-04-28 01:46:21 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2022-04-28 01:46:21 +0300 |
| commit | 59aa6065ebb3481e50c13ec6b4850448fe66186a (patch) | |
| tree | a0fc681cebd3535bc611c270075d74784daaf324 /Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs | |
| parent | b9b8126eacf4a4391f9725c91328586dd5446d4b (diff) | |
| download | Tango-59aa6065ebb3481e50c13ec6b4850448fe66186a.tar.gz Tango-59aa6065ebb3481e50c13ec6b4850448fe66186a.zip | |
FSE Procedures Remote Notifications.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Shared/Notifications/RemoteMessageBoxRequest.cs | 15 |
1 files changed, 15 insertions, 0 deletions
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; } + } +} |
