From a7ffe2cb28fa5ca2d0ff43fb7f89ec7adf256e6c Mon Sep 17 00:00:00 2001
From: goat <16760685+goaaats@users.noreply.github.com>
Date: Mon, 9 Aug 2021 15:06:54 +0200
Subject: [PATCH] feat: add ImageUrls, IconUrl to PluginManifest.cs
---
Dalamud/Plugin/Internal/Types/PluginManifest.cs | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/Dalamud/Plugin/Internal/Types/PluginManifest.cs b/Dalamud/Plugin/Internal/Types/PluginManifest.cs
index 3c937d710..a02595485 100644
--- a/Dalamud/Plugin/Internal/Types/PluginManifest.cs
+++ b/Dalamud/Plugin/Internal/Types/PluginManifest.cs
@@ -133,5 +133,15 @@ namespace Dalamud.Plugin.Internal.Types
///
[JsonProperty]
public int LoadPriority { get; init; }
+
+ ///
+ /// Gets a list of screenshot image URLs to show in the plugin installer.
+ ///
+ public List ImageUrls { get; init; }
+
+ ///
+ /// Gets an URL for the plugin's icon.
+ ///
+ public string IconUrl { get; init; }
}
}