// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex
{
///
/// Interface for objects with a .
///
public interface IDescription
{
///
/// Gets the description of the object.
///
///
/// The description of the object.
///
string Description { get; }
}
}