Files
SabreTools.Models/SGA/Section.cs

21 lines
499 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.SGA
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public abstract class Section<T>
{
2023-09-10 21:24:10 -04:00
public string? Alias { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public string? Name { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public T? FolderStartIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public T? FolderEndIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public T? FileStartIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public T? FileEndIndex { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public T? FolderRootIndex { get; set; }
2023-09-04 00:11:04 -04:00
}
}