25 lines
464 B
C#
25 lines
464 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EShang.Common
|
|
{
|
|
/// <summary>
|
|
/// KeyValue对象
|
|
/// </summary>
|
|
public class KeyValueModel
|
|
{
|
|
/// <summary>
|
|
/// key值
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// Value值
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
}
|
|
}
|