DD.WellWorkover.Cloud/AsbCloudApp/Data/WellOperationDto.cs

28 lines
547 B
C#
Raw Normal View History

using System;
namespace AsbCloudApp.Data
2021-07-27 13:32:00 +05:00
{
2021-08-02 14:45:13 +05:00
public class WellOperationDto : IId
2021-07-27 13:32:00 +05:00
{
2021-07-28 09:46:58 +05:00
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; }
2021-07-28 09:46:58 +05:00
public string WellDepth { get; set; }
2021-07-28 09:46:58 +05:00
public DateTime StartDate { get; set; }
2021-07-28 09:46:58 +05:00
public double Duration { get; set; }
2021-07-28 09:46:58 +05:00
public string Data { get; set; }
2021-07-28 09:46:58 +05:00
public string Comment { get; set; }
2021-07-27 13:32:00 +05:00
}
}