mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 06:13:40 +01:00
Re-apply feedback patches
This commit is contained in:
parent
a2305c7a1d
commit
1fc7c14b51
2 changed files with 35 additions and 16 deletions
|
|
@ -157,9 +157,23 @@ namespace Dalamud.Plugin.Internal.Types
|
|||
/// </summary>
|
||||
public List<string>? ImageUrls { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets an URL for the plugin's icon.
|
||||
/// </summary>
|
||||
public string? IconUrl { get; init; }
|
||||
}
|
||||
/// <summary>
|
||||
/// Gets an URL for the plugin's icon.
|
||||
/// </summary>
|
||||
public string? IconUrl { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value that indicates whether or not this plugin accepts feedback.
|
||||
/// </summary>
|
||||
public bool AcceptsFeedback { get; init; } = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets a message that is shown to users when sending feedback.
|
||||
/// </summary>
|
||||
public string? FeedbackMessage { get; init; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating the webhook URL feedback is sent to.
|
||||
/// </summary>
|
||||
public string? FeedbackWebhook { get; init; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue