summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/DirectMessageChannel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOAuth/DirectMessageChannel.cs')
-rw-r--r--src/DotNetOAuth/DirectMessageChannel.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/DotNetOAuth/DirectMessageChannel.cs b/src/DotNetOAuth/DirectMessageChannel.cs
new file mode 100644
index 0000000..72b45d8
--- /dev/null
+++ b/src/DotNetOAuth/DirectMessageChannel.cs
@@ -0,0 +1,11 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace DotNetOAuth {
+ internal class DirectMessageChannel {
+ public void Send(IProtocolMessage message) {
+ throw new System.NotImplementedException();
+ }
+ }
+}