mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
25 lines
567 B
C#
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; }
|
|
}
|
|
}
|