Get rid of unnecessary subfolder

This commit is contained in:
Matt Nadareski
2020-12-09 14:13:03 -08:00
parent e051f71504
commit d08c1a200c
25 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/// <summary>
/// This holds all of the auxiliary types needed for proper parsing
/// </summary>
namespace SabreTools.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
}