1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-22 05:40:11 +00:00
msfs-popout-panel-manager/OcrEvalData.cs
2021-09-20 21:31:01 -04:00

25 lines
567 B
C#

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