forked from ddrilling/AsbCloudServer
12 lines
230 B
C#
12 lines
230 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class WellDepthToDayDto
|
|
{
|
|
public double WellDepth { get; set; }
|
|
public double BitDepth { get; set; }
|
|
public DateTime Date { get; set; }
|
|
}
|
|
}
|