Move OfflineListInfo to new file

This commit is contained in:
Matt Nadareski
2024-10-30 14:01:13 -04:00
parent 876f7223b0
commit cbaf20ed6c
3 changed files with 18 additions and 29 deletions

View File

@@ -1,25 +0,0 @@
/// <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
}