using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EShang.Common { /// /// KeyValue对象 /// public class KeyValueModel { /// /// key值 /// public string Key { get; set; } /// /// Value值 /// public string Value { get; set; } } }