15 lines
524 B
C#
15 lines
524 B
C#
namespace OI.Metrology.Shared.DataModels;
|
|
|
|
public record WaferCounter(DateTime DateTime,
|
|
string DateTimeFormatted,
|
|
string EquipmentId,
|
|
string Message,
|
|
string Text,
|
|
int Total,
|
|
string SlotMap)
|
|
{
|
|
|
|
public static WaferCounter GetWaferCounter(string message) =>
|
|
new(DateTime.MinValue, string.Empty, string.Empty, message, string.Empty, 0, string.Empty);
|
|
|
|
} |