Files

25 lines
744 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.SGA
2025-09-26 10:57:15 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public abstract class Section
{
public string Alias { get; set; } = string.Empty;
2025-09-26 10:57:15 -04:00
public string Name { get; set; } = string.Empty;
2025-09-26 10:57:15 -04:00
}
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
2025-11-11 09:57:38 -05:00
public abstract class Section<TNumeric> : Section where TNumeric : notnull
2025-09-26 10:57:15 -04:00
{
2025-11-11 09:57:38 -05:00
public TNumeric? FolderStartIndex { get; set; }
2025-09-26 10:57:15 -04:00
2025-11-11 09:57:38 -05:00
public TNumeric? FolderEndIndex { get; set; }
2025-09-26 10:57:15 -04:00
2025-11-11 09:57:38 -05:00
public TNumeric? FileStartIndex { get; set; }
2025-09-26 10:57:15 -04:00
2025-11-11 09:57:38 -05:00
public TNumeric? FileEndIndex { get; set; }
2025-09-26 10:57:15 -04:00
2025-11-11 09:57:38 -05:00
public TNumeric? FolderRootIndex { get; set; }
2025-09-26 10:57:15 -04:00
}
}