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

@@ -0,0 +1,14 @@
namespace SabreTools.DatFiles
{
/// <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; }
}
}