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; } }