1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-26 07:40:10 +00:00
msfs-popout-panel-manager/Modules/PlaneProfile.cs

30 lines
597 B
C#
Raw Normal View History

2021-09-30 02:17:20 +00:00
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; }
}
}