namespace AsbCloudDb.Model.DailyReport { public class TimeBalance { /// /// Бурение /// public string Drilling { get; set; } = string.Empty; /// /// Промывка /// public string Flushing { get; set; } = string.Empty; /// /// Наращивание /// public string Building { get; set; } = string.Empty; /// /// Проработка /// public string Elaboration { get; set; } = string.Empty; /// /// Расширка /// public string Extension { get; set; } = string.Empty; /// /// Ремонт /// public string Repair { get; set; } = string.Empty; /// /// КНБК /// public string Knbk { get; set; } = string.Empty; /// /// СПО /// public string Spo { get; set; } = string.Empty; /// /// ПЗР /// public string Pzr { get; set; } = string.Empty; /// /// ПВО /// public string Pvo { get; set; } = string.Empty; /// /// ПГР /// public string Pgr { get; set; } = string.Empty; /// /// ГИС /// public string Gis { get; set; } = string.Empty; /// /// ОЗЦ /// public string Ozc { get; set; } = string.Empty; /// /// Тех. работы /// public string EngineeringWorks { get; set; } = string.Empty; /// /// Снятие замера /// public string TakingMeasure { get; set; } = string.Empty; /// /// Цементирование /// public string Cementing { get; set; } = string.Empty; /// /// Простой /// public string Simple { get; set; } = string.Empty; /// /// НПВ /// public string Npv { get; set; } = string.Empty; } }