summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Core/Messaging/IExtensionMessage.cs
blob: a2032bbdb113418f6db5d1b66120beb08b95a04d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//-----------------------------------------------------------------------
// <copyright file="IExtensionMessage.cs" company="Outercurve Foundation">
//     Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------

namespace DotNetOpenAuth.Messaging {
	using System.Diagnostics.CodeAnalysis;

	/// <summary>
	/// An interface that extension messages must implement.
	/// </summary>
	[SuppressMessage("Microsoft.Design", "CA1040:AvoidEmptyInterfaces", Justification = "Extension messages may gain members later on.")]
	public interface IExtensionMessage : IMessage {
	}
}