forked from ddrilling/AsbCloudServer
24 lines
645 B
C#
24 lines
645 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AsbCloudApp.Data.DailyReport;
|
|
|
|
|
|
namespace AsbCloudApp.Data
|
|
{
|
|
/// <summary>
|
|
/// Блоки для формирования суточного рапорта
|
|
/// </summary>
|
|
public class DailyReportDto
|
|
{
|
|
|
|
public DailyReportHeadDto Head { get; set; }
|
|
public DailyReportBhaDto Bha { get; set; }
|
|
public DailyReportDimensionlessDto Dimensionless { get; set; }
|
|
public DailyReportTimeBalanceDto TimeBalance { get; set; }
|
|
public DailyReportSaubDto Saub { get; set; }
|
|
public DailyReportSignDto Sign { get; set; }
|
|
|
|
|
|
}
|
|
}
|