fix docstring, missing bracket

This commit is contained in:
Raymond 2021-12-02 21:38:12 -05:00
parent b8441e5a87
commit 2d804e5159

View file

@ -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; }
}
} }