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

19 lines
590 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace AsbCloudApp.Data
{
public class StatWellDto : IId
{
2021-08-25 11:13:56 +05:00
public int Id { get; set; }
public string Caption { get; set; }
2021-08-25 15:17:24 +05:00
public string WellType { get; set; }
2021-10-20 14:15:53 +05:00
public int IdState { get; set; }
public string State { get; set; }
public DateTime LastTelemetryDate { get; set; }
2021-08-25 11:13:56 +05:00
public IEnumerable<StatSectionDto> Sections { get; set; }
public PlanFactBase<StatOperationsDto> Total { get; set; }
public IEnumerable<CompanyDto> Companies { get; set; }
}
}