TypeaheadView.cs 247 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YLShipBuildLandMap.Entity.ViewModel
  5. {
  6. public class TypeaheadView
  7. {
  8. public string Value { get; set; }
  9. public string Text { get; set; }
  10. }
  11. }