using System; using System.Collections.Generic; using System.Text; namespace CZFW.Framework.Interface.Base { public interface IDropdownSrc { IList<KeyValuePair<string, int>> GetSrcData(string key = null); } }