mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Get rid of unnecessary subfolder
This commit is contained in:
24
SabreTools.DatFiles/Auxiliary.cs
Normal file
24
SabreTools.DatFiles/Auxiliary.cs
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user