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