using SabreTools.DatItems; namespace SabreTools.DatFiles.Formats { /// /// Represents a Archive.org file list /// internal sealed class ArchiveDotOrg : SerializableDatFile { /// public override ItemType[] SupportedTypes => [ ItemType.Rom, ]; /// /// Constructor designed for casting a base DatFile /// /// Parent DatFile to copy from public ArchiveDotOrg(DatFile? datFile) : base(datFile) { } } }