forked from ddrilling/AsbCloudServer
18 lines
549 B
C#
18 lines
549 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 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; }
|
|
}
|
|
}
|