28 lines
611 B
C#
28 lines
611 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 两个参数的Key value value
|
|
/// </summary>
|
|
public class KeyValueTwoParameters
|
|
{
|
|
/// <summary>
|
|
/// 值名称
|
|
/// </summary>
|
|
public string key { get; set; }
|
|
/// <summary>
|
|
/// 值一
|
|
/// </summary>
|
|
public string valueOne { get; set; }
|
|
/// <summary>
|
|
/// 值二
|
|
/// </summary>
|
|
public string valueTwo { get; set; }
|
|
}
|
|
}
|