Files
SabreTools.Models/SGA/Section.cs
2023-11-07 20:57:05 -05:00

21 lines
499 B
C#

namespace SabreTools.Models.SGA
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/SGAFile.h"/>
public abstract class Section<T>
{
public string? Alias { get; set; }
public string? Name { get; set; }
public T? FolderStartIndex { get; set; }
public T? FolderEndIndex { get; set; }
public T? FileStartIndex { get; set; }
public T? FileEndIndex { get; set; }
public T? FolderRootIndex { get; set; }
}
}