10 lines
354 B
C#
10 lines
354 B
C#
namespace Inspectron.Camera.Emulation
|
|
{
|
|
public class EmulationCameraCapabilities:ICameraCapabilities
|
|
{
|
|
public bool CanGrabSingle { get; } = true;
|
|
public bool CanGrabContinuous { get; } = false;
|
|
public bool CanSaveParametersToFile { get; } = false;
|
|
public bool CanSaveParametersToDevice { get; } = false;
|
|
}
|
|
} |