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