2021-06-17 15:12:39 +05:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
|
|
|
|
public class WellDepthToDayDto
|
|
|
|
|
{
|
2021-06-25 15:10:05 +05:00
|
|
|
|
public double WellDepth { get; set; }
|
|
|
|
|
public double BitDepth { get; set; }
|
2021-06-17 15:12:39 +05:00
|
|
|
|
public DateTime Date { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|