mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
19 lines
432 B
C#
19 lines
432 B
C#
|
using MSFSPopoutPanelManager.DomainModel.Profile;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.DomainModel.DataFile
|
|||
|
{
|
|||
|
public class UserProfileFile
|
|||
|
{
|
|||
|
public UserProfileFile()
|
|||
|
{
|
|||
|
FileVersion = "4.0";
|
|||
|
Profiles = new List<UserProfile>();
|
|||
|
}
|
|||
|
|
|||
|
public string FileVersion { get; set; }
|
|||
|
|
|||
|
public IList<UserProfile> Profiles { get; set; }
|
|||
|
}
|
|||
|
}
|