StableVersion4.3/HL_FristAidPlatform_DTO/Service/KeyValue.cs

22 lines
403 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class KeyValue
{
/// <summary>
/// key
/// </summary>
public string Key { get; set; }
/// <summary>
/// value
/// </summary>
public string Value { get; set; }
}
}