forked from ddrilling/AsbCloudServer
28 lines
547 B
C#
28 lines
547 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
public class WellOperationDto : IId
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int IdSection { get; set; }
|
|
|
|
public int IdCategory { get; set; }
|
|
|
|
public string CategoryName { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string WellDepth { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public double Duration { get; set; }
|
|
|
|
public string Data { get; set; }
|
|
|
|
public string Comment { get; set; }
|
|
}
|
|
}
|