Files
SabreTools/SabreTools.Library/DatFiles/Auxiliary.cs
2020-08-24 22:25:47 -07:00

25 lines
542 B
C#

/// <summary>
/// This holds all of the auxiliary types needed for proper parsing
/// </summary>
namespace SabreTools.Library.DatFiles
{
#region DatHeader
#region OfflineList
/// <summary>
/// Represents one OfflineList infos object
/// </summary>
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
}