| @@ -5,9 +5,21 @@ namespace Discord.Interactions | |||||
| /// </summary> | /// </summary> | ||||
| public enum LocalizationTarget | public enum LocalizationTarget | ||||
| { | { | ||||
| /// <summary> | |||||
| /// Target is a <see cref="IInteractionModuleBase"/> tagged with a <see cref="GroupAttribute"/>. | |||||
| /// </summary> | |||||
| Group, | Group, | ||||
| /// <summary> | |||||
| /// Target is an application command method. | |||||
| /// </summary> | |||||
| Command, | Command, | ||||
| /// <summary> | |||||
| /// Target is a Slash Command parameter. | |||||
| /// </summary> | |||||
| Parameter, | Parameter, | ||||
| /// <summary> | |||||
| /// Target is a Slash Command parameter choice. | |||||
| /// </summary> | |||||
| Choice | Choice | ||||
| } | } | ||||
| } | } | ||||