25 lines
588 B
C#
25 lines
588 B
C#
using System;
|
|
using SharedDatabase;
|
|
|
|
namespace Workplace
|
|
{
|
|
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 CodeLocation CodeLocation;
|
|
|
|
public FocusPressedEventArgs(int ixPolozky, CodeLocation codeLocation)
|
|
{
|
|
this.IxPolozky = ixPolozky;
|
|
this.CodeLocation = codeLocation;
|
|
}
|
|
}
|
|
}
|