diff --git a/Interfaces/IArchive.cs b/Interfaces/IArchive.cs
index affc462a7..de865435f 100644
--- a/Interfaces/IArchive.cs
+++ b/Interfaces/IArchive.cs
@@ -36,6 +36,7 @@
using System;
using System.Collections.Generic;
using System.IO;
+using System.Text;
using Aaru.CommonTypes.Enums;
namespace Aaru.CommonTypes.Interfaces;
@@ -187,4 +188,6 @@ public interface IArchive
/// The entry for which the Filter should be returned.
/// The Filter for the given entry.
IFilter GetEntry(int entryNumber);
+
+ void GetInformation(IFilter filter, Encoding encoding, out string information);
}
\ No newline at end of file