23 lines
403 B
C#
23 lines
403 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TBF.UiBridge
|
|
{
|
|
public class CameraInfoEventArgs : EventArgs
|
|
{
|
|
public int CameraIdx;
|
|
public string Info;
|
|
|
|
public CameraInfoEventArgs(int cameraIdx, string info)
|
|
{
|
|
this.CameraIdx = cameraIdx;
|
|
this.Info = info;
|
|
}
|
|
}
|
|
}
|