You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
291 B

  1. namespace Swift.web.Library
  2. {
  3. public class AutoCompleteItem
  4. {
  5. public string Key { get; set; }
  6. public string Value { get; set; }
  7. public AutoCompleteItem(string key, string value)
  8. {
  9. Key = key;
  10. Value = value;
  11. }
  12. }
  13. }