namespace SabreTools.Models.SGA
{
///
public abstract class Section
{
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; }
}
}