forked from ddrilling/AsbCloudServer
11 lines
215 B
C#
11 lines
215 B
C#
|
using System;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class WellDepthToIntervalDto
|
|||
|
{
|
|||
|
public DateTime IntervalStartDate { get; set; }
|
|||
|
public double IntervalDepthProgress { get; set; }
|
|||
|
}
|
|||
|
}
|