Files
SabreTools/SabreTools.DatFiles/Formats/Auxiliary.cs
2023-08-10 23:22:14 -04:00

26 lines
569 B
C#

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