1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-02-18 01:14:29 +01:00
msfs-popout-panel-manager/Modules/PlaneProfile.cs

30 lines
597 B
C#
Raw Normal View History

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