/// /// This holds all of the auxiliary types needed for proper parsing /// namespace SabreTools.DatFiles.Formats { #region DatHeader #region OfflineList /// /// Represents one OfflineList infos object /// public class OfflineListInfo { public string Name { get; set; } public bool? Visible { get; set; } public bool? InNamingOption { get; set; } public bool? Default { get; set; } } #endregion #endregion // DatHeader }