22 lines
466 B
C#
22 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class ConstructionLogHSE
|
|
{
|
|
public string ConstructionLogId { get; set; }
|
|
|
|
public string HSETodaySummary { get; set; }
|
|
|
|
public string HSETodaySummaryRemark { get; set; }
|
|
|
|
public string HSETomorrowPlan { get; set; }
|
|
|
|
public string HSETomorrowPlanRemark { get; set; }
|
|
}
|
|
}
|