feat: add ImageUrls, IconUrl to PluginManifest.cs

This commit is contained in:
goat 2021-08-09 15:06:54 +02:00
parent 81b31d71ac
commit a7ffe2cb28
No known key found for this signature in database
GPG key ID: F18F057873895461

View file

@ -133,5 +133,15 @@ namespace Dalamud.Plugin.Internal.Types
/// </summary>
[JsonProperty]
public int LoadPriority { get; init; }
/// <summary>
/// Gets a list of screenshot image URLs to show in the plugin installer.
/// </summary>
public List<string> ImageUrls { get; init; }
/// <summary>
/// Gets an URL for the plugin's icon.
/// </summary>
public string IconUrl { get; init; }
}
}