mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
29 lines
597 B
C#
29 lines
597 B
C#
using System.Collections.Generic;
|
|
|
|
namespace MSFSPopoutPanelManager
|
|
{
|
|
public class PlaneProfile
|
|
{
|
|
public int ProfileId { get; set; }
|
|
|
|
public string ProfileName { get; set; }
|
|
|
|
public string AnalysisTemplateName { get; set; }
|
|
}
|
|
|
|
public class AnalysisData
|
|
{
|
|
public string TemplateName { get; set; }
|
|
|
|
public List<Template> Templates { get; set; }
|
|
}
|
|
|
|
public class Template
|
|
{
|
|
public int PopoutId { get; set; }
|
|
|
|
public string PopoutName { get; set; }
|
|
|
|
public List<string> ImagePaths { get; set; }
|
|
}
|
|
}
|