using System.Collections.Generic; namespace MSFSPopoutPanelManager { public class OcrEvalData { public string Profile { get; set; } public bool DefaultProfile { get; set; } /// /// Scale the image so OCR can better recognize text /// public double OCRImageScale { get; set; } public List EvalData { get; set; } } public class PopoutEvalData { public string PopoutName { get; set; } public List Data { get; set; } } }