/// /// Copyright (c) 2013-2015 Sensus Metering Systems /// 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; } } }