DD.WellWorkover.Cloud/AsbCloudApp/Data/StatWellDto.cs
2021-10-20 14:15:53 +05:00

19 lines
590 B
C#

using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatWellDto : IId
{
public int Id { get; set; }
public string Caption { get; set; }
public string WellType { get; set; }
public int IdState { get; set; }
public string State { get; set; }
public DateTime LastTelemetryDate { get; set; }
public IEnumerable<StatSectionDto> Sections { get; set; }
public PlanFactBase<StatOperationsDto> Total { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}