1 2 3 4 5 6
namespace Cmpp298.Assignment3.Dto { public interface IDropDownListItem { string Text { get; } string Value { get; } } }