20 lines
369 B
C#
20 lines
369 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Config.Entities;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
{
|
|
public interface IDataEntryForCamera : IDataEntry
|
|
{
|
|
string[] StartImages { get; set; }
|
|
|
|
string[] EndImages { get; set; }
|
|
|
|
bool SaveImages { get; }
|
|
}
|
|
}
|