2022-07-25 18:02:39 +05:00
|
|
|
|
using AsbCloudDb.Model.DailyReport;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model
|
|
|
|
|
{
|
|
|
|
|
public class DailyReportInfo
|
|
|
|
|
{
|
2023-02-20 15:28:35 +05:00
|
|
|
|
public Head Head { get; set; } = null!;
|
|
|
|
|
public Bha Bha { get; set; } = new();
|
|
|
|
|
public NoDrilling NoDrilling { get; set; } = new();
|
|
|
|
|
public TimeBalance TimeBalance { get; set; } = new();
|
|
|
|
|
public Saub Saub { get; set; } = new();
|
|
|
|
|
public Sign Sign { get; set; } = new();
|
2022-07-25 18:02:39 +05:00
|
|
|
|
}
|
|
|
|
|
}
|