2022-07-04 13:15:26 +05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using AsbCloudDb.Model.DailyReportDB;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudDb.Model
|
|
|
|
|
{
|
|
|
|
|
#nullable disable
|
|
|
|
|
public class DailyReportInfo
|
|
|
|
|
{
|
2022-07-05 11:30:25 +05:00
|
|
|
|
public DailyReportHead Head { get; set; }
|
|
|
|
|
public DailyReportBha Bha { get; set; }
|
|
|
|
|
public DailyReportDimensionless Dimensionless { get; set; }
|
|
|
|
|
public DailyReportTimeBalance TimeBalance { get; set; }
|
|
|
|
|
public DailyReportSaub Saub { get; set; }
|
|
|
|
|
public DailyReportSign Sign { get; set; }
|
2022-07-04 13:15:26 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|