From 42a4538e06bf9f3fae62095d336f1d9297edd320 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 6 Oct 2023 03:08:35 +0100 Subject: [PATCH] [IArchive] Add `Author` field. --- Interfaces/IArchive.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Interfaces/IArchive.cs b/Interfaces/IArchive.cs index 758ccfe44..ef0025060 100644 --- a/Interfaces/IArchive.cs +++ b/Interfaces/IArchive.cs @@ -79,6 +79,9 @@ public interface IArchive /// Unique UUID of the plugin Guid Id { get; } + /// Plugin author + string Author { get; } + /// Identifies if the specified path contains data recognizable by this archive instance /// Path. bool Identify(string path);