using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.IO;
|
using System.Runtime.Serialization;
|
|
namespace M423project
|
{
|
public struct DetectValues
|
{
|
public double Height { get; set; }
|
public double Length { get; set; }
|
public double Width { get; set; }
|
}
|
|
[Serializable]
|
public class DetectCompensation
|
{
|
private string fileName = string.Empty;
|
|
private DetectValues[] PlateCompList = new DetectValues[5];
|
|
public DetectCompensation(string _fileName)
|
{
|
fileName = _fileName;
|
|
}
|
|
|
}
|
}
|