DD.WellWorkover.Cloud/AsbCloudApp/Data/WellOperationDto.cs
2021-08-02 14:45:13 +05:00

25 lines
473 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}