From ccd60f720aea2d2e108798778de470440e50458f Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 29 Aug 2018 22:15:43 +0100 Subject: [PATCH] Add "Author" field to plugins. --- Interfaces/IFilesystem.cs | 2 ++ Interfaces/IFilter.cs | 2 ++ Interfaces/IMediaImage.cs | 2 ++ Interfaces/IPartition.cs | 2 ++ 4 files changed, 8 insertions(+) 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.