using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class KeyValueTwoParameters
{
///
/// 值名称
///
public string key { get; set; }
///
/// 值一
///
public string valueOne { get; set; }
///
/// 值二
///
public string valueTwo { get; set; }
}
}