namespace Chernobyl { /// /// A simple interface for an instance that can be named. /// public interface INamed { /// /// Gets or sets the name of the instance. /// string Name { get; set; } } }