25 lines
534 B
C#
25 lines
534 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class KeyValueTwoParameters
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 值名称
|
|||
|
/// </summary>
|
|||
|
public string key { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 值一
|
|||
|
/// </summary>
|
|||
|
public string valueOne { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 值二
|
|||
|
/// </summary>
|
|||
|
public string valueTwo { get; set; }
|
|||
|
}
|
|||
|
}
|