using SabreTools.DatItems; namespace SabreTools.DatFiles.Formats { /// /// Represents a Archive.org file list /// public 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) { Header.SetFieldValue(DatHeader.DatFormatKey, DatFormat.ArchiveDotOrg); } } }