24 lines
420 B
C#
24 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class DoubleDataSetModel
|
|
{
|
|
// /// <summary>
|
|
///
|
|
/// </summary>
|
|
public double Number { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string TimeDate { get; set; }
|
|
}
|
|
|
|
|
|
}
|