forked from ddrilling/AsbCloudServer
14 lines
366 B
C#
14 lines
366 B
C#
using AsbCloudDb.Model.DailyReport;
|
|
|
|
namespace AsbCloudDb.Model
|
|
{
|
|
public class DailyReportInfo
|
|
{
|
|
public Head Head { get; set; } = null!;
|
|
public Bha Bha { get; set; } = new();
|
|
public NoDrilling NoDrilling { get; set; } = new();
|
|
public Saub Saub { get; set; } = new();
|
|
public Sign Sign { get; set; } = new();
|
|
}
|
|
}
|