using RobotNet10.Shared.Geometry;
namespace RobotNet10.RobotApp.Devices;
///
/// Interface cho thiết bị Camera QR Code Detection
///
public interface ICameraQr
{
bool IsConnected { get; }
PoseStamped? this[string code] { get; }
Dictionary Codes { get; }
}