IDropdownSrc.cs 233 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CZFW.Framework.Interface.Base
  5. {
  6. public interface IDropdownSrc
  7. {
  8. IList<KeyValuePair<string, int>> GetSrcData(string key = null);
  9. }
  10. }