namespace DesignPatterns.Adapter { public interface IDropDownListItem { string Text { get; } string Value { get; } } }