Files
PdfMarker_Web/PdfMarker/Models/QuotaCandidate.cs
2026-01-23 09:57:52 +01:00

21 lines
537 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace PdfMarker.Models;
public class QuotaCandidate
{
public QuotaType Type { get; set; }
public string RawText { get; set; } = string.Empty;
// Bounding box normalizzato (01)
public double X { get; set; }
public double Y { get; set; }
public double Width { get; set; }
public double Height { get; set; }
// Orientamento stimato
public bool IsHorizontal { get; set; }
public bool IsVertical { get; set; }
// Confidenza grezza (01)
public double Confidence { get; set; }
}