tbf/TestBenchFramework/UiBridge/ImageUpdatedEventArgs.cs
2014-07-28 09:56:40 +02:00

18 lines
315 B
C#

using System;
using TBF.BenchControl;
namespace TBF.UiBridge
{
public class ImageUpdatedEventArgs : EventArgs
{
public int CameraIdx;
public string ImageLocation;
public ImageUpdatedEventArgs(int cameraIdx, string imageLocation)
{
CameraIdx = cameraIdx;
ImageLocation = imageLocation;
}
}
}