namespace Poe2Trade.Screen; public record DetectedEnemy( float Confidence, int X, int Y, int Width, int Height, int Cx, int Cy, bool HealthBarConfirmed); public record DetectionSnapshot( IReadOnlyList Enemies, long Timestamp, float InferenceMs); public record DetectedBoss( string ClassName, float Confidence, int X, int Y, int Width, int Height, int Cx, int Cy, float VxPerMs = 0, float VyPerMs = 0); public record BossSnapshot( IReadOnlyList Bosses, long Timestamp, float InferenceMs);