You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Discord.Commands
- {
- /// <summary> Represents information of the command execution result. </summary>
- public interface IResult
- {
- /// <summary> Describes the error type that may have occurred during the operation. </summary>
- CommandError? Error { get; }
- /// <summary> Describes the reason for the error. </summary>
- string ErrorReason { get; }
- /// <summary> Indicates whether the operation was successful or not. </summary>
- bool IsSuccess { get; }
- }
- }
|