view Lang/ITranslatable.cs @ 21:c8d74202182a

Closes #14 - Throw specific exceptions from translations * Add TranslationLoadException * Make Translation class catch various exceptions and throw meaninful TranslationLoadExceptions * Note potential exceptions in documentation of Translation
author IBBoard <dev@ibboard.co.uk>
date Thu, 05 Mar 2009 20:34:31 +0000
parents 0352fa33ee8f
children cc7fae81afec
line wrap: on
line source

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

using System;

namespace IBBoard.Lang
{
	/// <summary>
	/// Summary description for ITranslatable.
	/// </summary>
	public interface ITranslatable
	{
		string Name{ get; set;}
		string Text{ get; set;}
	}
}