forked from ddrilling/AsbCloudServer
12 lines
232 B
C#
12 lines
232 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; }
|
|
}
|
|
}
|