From 7f31a7ba325ce4cb7760f218f6ff19a5130bfab6 Mon Sep 17 00:00:00 2001 From: Misha133 Date: Mon, 7 Nov 2022 22:08:54 +0300 Subject: [PATCH] add notes about nullable properties --- .../MessageComponents/IComponentInteractionData.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; }