mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
feat: add ImageUrls, IconUrl to PluginManifest.cs
This commit is contained in:
parent
81b31d71ac
commit
a7ffe2cb28
1 changed files with 10 additions and 0 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue