aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs b/Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs
deleted file mode 100644
index b7a406fd6..000000000
--- a/Software/Visual_Studio/Tango.Transport/RequestReceivedEventArgs.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using Tango.PMR.Common;
-
-namespace Tango.Transport
-{
- public class RequestReceivedEventArgs
- {
- public MessageContainer Container { get; set; }
- public bool Handled { get; set; }
-
- public RequestReceivedEventArgs()
- {
-
- }
-
- public RequestReceivedEventArgs(MessageContainer container) : this()
- {
- Container = container;
- }
- }
-}