#region Arthea License
/***********************************************************************
*  Arthea MUD by R. Jennings (2007)      http://arthea.googlecode.com/ *
*  By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
namespace Arthea.Database.Interfaces
{
    /// <summary>
    /// Interface for indexed items in a database.
    /// </summary>
    public interface Indexed
    {
        /// <summary>
        /// Gets the id.
        /// </summary>
        /// <value>The id.</value>
        uint Id { get; }
    }
}