From 72ab60e0a499bb850d59d3e4f5d16b0aa20d4e60 Mon Sep 17 00:00:00 2001 From: Misha133 Date: Tue, 8 Nov 2022 14:38:34 +0300 Subject: [PATCH] --- .../MessageComponents/IComponentInteractionData.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs b/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs index 640255ed4..3a6526ee2 100644 --- a/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs +++ b/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs @@ -18,27 +18,27 @@ namespace Discord ComponentType Type { get; } /// - /// Gets the value(s) of a interaction response. Null if select type is different. + /// Gets the value(s) of a interaction response. if select type is different. /// IReadOnlyCollection Values { get; } /// - /// Gets the channels(s) of a interaction response. Null if select type is different. + /// Gets the channels(s) of a interaction response. if select type is different. /// IReadOnlyCollection Channels { get; } /// - /// Gets the user(s) of a or interaction response. Null if select type is different. + /// Gets the user(s) of a or interaction response. if select type is different. /// IReadOnlyCollection Users { get; } /// - /// Gets the roles(s) of a or interaction response. Null if select type is different. + /// Gets the roles(s) of a or interaction response. if select type is different. /// IReadOnlyCollection Roles { get; } /// - /// Gets the guild member(s) of a or interaction response. Null if type select is different. + /// Gets the guild member(s) of a or interaction response. if type select is different. /// IReadOnlyCollection Members { get; }