forked from ddrilling/AsbCloudServer
8 lines
187 B
C#
8 lines
187 B
C#
|
namespace AsbCloudDb.Model.DailyReports.Blocks.Sign;
|
||
|
|
||
|
public class SignBlock : ItemInfo
|
||
|
{
|
||
|
public SignRecord? DrillingMaster { get; set; }
|
||
|
|
||
|
public SignRecord? Supervisor { get; set; }
|
||
|
}
|