using System.Collections.Generic; using Wabbajack.DTOs.BSA.ArchiveStates; namespace Wabbajack.Compression.BSA.Interfaces; public interface IReader { /// /// The files defined by the archive /// IEnumerable Files { get; } IArchive State { get; } }