diff --git a/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs b/src/Discord.Net.Core/Entities/Interactions/MessageComponents/IComponentInteractionData.cs index 88382ad8e..640255ed4 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. + /// Gets the value(s) of a interaction response. Null if select type is different. /// IReadOnlyCollection Values { get; } /// - /// Gets the channels(s) of a interaction response. - /// + /// Gets the channels(s) of a interaction response. Null if select type is different. + /// IReadOnlyCollection Channels { get; } /// - /// Gets the user(s) of a or interaction response. + /// Gets the user(s) of a or interaction response. Null if select type is different. /// IReadOnlyCollection Users { get; } /// - /// Gets the roles(s) of a or interaction response. + /// Gets the roles(s) of a or interaction response. Null if select type is different. /// IReadOnlyCollection Roles { get; } /// - /// Gets the guild member(s) of a or interaction response. + /// Gets the guild member(s) of a or interaction response. Null if type select is different. /// IReadOnlyCollection Members { get; }