28 lines
571 B
C#
28 lines
571 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.HSSE
|
|
{
|
|
public class Information_DrillConductedQuarterlyReport
|
|
{
|
|
|
|
|
|
public string CompileMan { get; set; }
|
|
|
|
public string DrillConductedQuarterlyReportId { get; set; }
|
|
|
|
public System.Nullable<int> Quarter { get; set; }
|
|
|
|
public System.Nullable<System.DateTime> ReportDate { get; set; }
|
|
|
|
public string UnitId { get; set; }
|
|
|
|
public System.Nullable<int> YearId { get; set; }
|
|
|
|
}
|
|
|
|
}
|