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