summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/IProtocolMessage.cs
blob: ccf4e5a94c70723bd60d12880e53131f05f4a7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;

namespace DotNetOAuth {
	/// <summary>
	/// The interface that classes must implement to be serialized/deserialized
	/// as OAuth messages.
	/// </summary>
	interface IProtocolMessage {
	}
}