1 2 3 4 5 6
namespace DesignPatterns.Adapter { public interface IDropDownListItem { string Text { get; } string Value { get; } } }