using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LibDataBase { public class OCRTextResult { public bool match; public string text; public List points = new List(); } }