diff --git a/Interfaces/IFilesystem.cs b/Interfaces/IFilesystem.cs
index 470129e..fbc4257 100644
--- a/Interfaces/IFilesystem.cs
+++ b/Interfaces/IFilesystem.cs
@@ -57,6 +57,8 @@ namespace DiscImageChef.CommonTypes.Interfaces
///
/// Information about the filesystem as expected by CICM Metadata XML
FileSystemType XmlFsType { get; }
+ /// Plugin author
+ string Author { get; }
///
/// Identifies the filesystem in the specified LBA
diff --git a/Interfaces/IFilter.cs b/Interfaces/IFilter.cs
index 81779d7..58a38d0 100644
--- a/Interfaces/IFilter.cs
+++ b/Interfaces/IFilter.cs
@@ -47,6 +47,8 @@ namespace DiscImageChef.CommonTypes.Interfaces
string Name { get; }
/// Unique UUID of the plugin
Guid Id { get; }
+ /// Plugin author
+ string Author { get; }
///
/// Closes all opened streams.
diff --git a/Interfaces/IMediaImage.cs b/Interfaces/IMediaImage.cs
index 7cce3f4..204278b 100644
--- a/Interfaces/IMediaImage.cs
+++ b/Interfaces/IMediaImage.cs
@@ -55,6 +55,8 @@ namespace DiscImageChef.CommonTypes.Interfaces
string Name { get; }
/// Plugin UUID.
Guid Id { get; }
+ /// Plugin author
+ string Author { get; }
///
/// Gets the image format.
///
diff --git a/Interfaces/IPartition.cs b/Interfaces/IPartition.cs
index 759bb17..4fb8088 100644
--- a/Interfaces/IPartition.cs
+++ b/Interfaces/IPartition.cs
@@ -53,6 +53,8 @@ namespace DiscImageChef.Partitions
string Name { get; }
/// Plugin UUID.
Guid Id { get; }
+ /// Plugin author
+ string Author { get; }
///
/// Interprets a partitioning scheme.