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

32 lines
667 B
C#

using System;
namespace AsbCloudApp.Data
{
public class WellOperationDto : IId
{
public int Id { get; set; }
public int IdWell { get; set; }
public int IdWellSectionType { get; set; }
public string WellSectionTypeName { get; set; }
public int IdOperationCategory { get; set; }
public string CategoryName { get; set; }
public string Type { get; set; }
public double WellDepth { get; set; }
public DateTime StartDate { get; set; }
public double DurationHours { get; set; }
public string Info { get; set; }
public string Comment { get; set; }
}
}