namespace Vanara { /// An object that exposes a name. public interface INamedEntity { /// Gets the name. string Name { get; } } }