namespace Caliburn.Micro.Core { /// /// Denotes an instance which has a display name. /// public interface IHaveDisplayName { /// /// Gets or Sets the Display Name /// string DisplayName { get; set; } } }