view Limits/IPercentageLimit.cs @ 63:8fe11cd7d3bf

Re #25: Enum parsing * Extract enum parsing to separate class * Add more info to XmlTools exceptions and use new class
author IBBoard <dev@ibboard.co.uk>
date Mon, 30 Nov 2009 21:00:05 +0000
parents 0e64a120785f
children 90b9a3fe3c18
line wrap: on
line source

// This file (IPercentageLimit.cs) is a part of the IBBoard project and is copyright 2009 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.

using System;

namespace IBBoard.Limits
{
	/// <summary>
	/// A marker interface for limits that represent a percentage restriction
	/// </summary>
	public interface IPercentageLimit : ILimit
	{
		double Percentage { get; }
	}
}