forked from ddrilling/AsbCloudServer
19 lines
356 B
C#
19 lines
356 B
C#
namespace AsbCloudApp.Data
|
|
{
|
|
public class WellOperationDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int IdWell { get; set; }
|
|
|
|
public string Caption { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public double CasingSection { get; set; }
|
|
|
|
public double WellDepth { get; set; }
|
|
|
|
}
|
|
}
|