forked from ddrilling/AsbCloudServer
25 lines
553 B
C#
25 lines
553 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DataTable
|
|
{
|
|
[Serializable]
|
|
public class TestDto
|
|
{
|
|
[Description("Дата")]
|
|
public DateTime Date { get; set; } = DateTime.Now;
|
|
|
|
public int? Mode { get; set; }
|
|
|
|
[Description("Пользователь")]
|
|
public string User { get; set; }
|
|
|
|
[Description("Глубина забоя")]
|
|
public double? WellDepth { get; set; }
|
|
}
|
|
}
|