27 lines
673 B
C#
27 lines
673 B
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.DataEntry.S620
|
|
{
|
|
public class FocusPressedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// ID of a part in this workstep:
|
|
/// 0 undefined
|
|
/// 1 reference part
|
|
/// 2..99 parts with unique codes
|
|
/// 100.. parts with batch numbers
|
|
/// </summary>
|
|
public int IxPolozky;
|
|
public TracingDB.CodeLocation CodeLocation;
|
|
|
|
public FocusPressedEventArgs(int ixPolozky, TracingDB.CodeLocation codeLocation)
|
|
{
|
|
this.IxPolozky = ixPolozky;
|
|
this.CodeLocation = codeLocation;
|
|
}
|
|
}
|
|
}
|