mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
20 lines
421 B
C#
20 lines
421 B
C#
|
using MSFSPopoutPanelManager.DomainModel.Setting;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.DomainModel.DataFile
|
|||
|
{
|
|||
|
public class AppSetttingFile
|
|||
|
{
|
|||
|
public AppSetttingFile()
|
|||
|
{
|
|||
|
FileVersion = "4.0";
|
|||
|
ApplicationSetting = new ApplicationSetting();
|
|||
|
}
|
|||
|
|
|||
|
public string FileVersion { get; set; }
|
|||
|
|
|||
|
public ApplicationSetting ApplicationSetting { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
}
|