Files
2025-08-19 12:45:50 +02:00

8 lines
158 B
C#

namespace Inspectron.HawkEye.Protocol.Interfaces
{
public interface IImageSource
{
byte[] GetImage();
void CancelTrigger();
}
}