mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-16 05:34:16 +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>
|
/// </summary>
|
||||||
[JsonProperty]
|
[JsonProperty]
|
||||||
public int LoadPriority { get; init; }
|
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