using MSFSPopoutPanelManager.DomainModel.Profile; using System.Collections.Generic; namespace MSFSPopoutPanelManager.DomainModel.DataFile { public class UserProfileFile { public UserProfileFile() { FileVersion = "4.0"; Profiles = new List(); } public string FileVersion { get; set; } public IList Profiles { get; set; } } }