20 lines
No EOL
436 B
C#
20 lines
No EOL
436 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using Qmmands;
|
|
|
|
namespace WingsEmu.Commands.Entities
|
|
{
|
|
public sealed class SaltyCommandResult : CommandResult
|
|
{
|
|
public SaltyCommandResult(bool isSuccessful, string message = null)
|
|
{
|
|
IsSuccessful = isSuccessful;
|
|
Message = message;
|
|
}
|
|
|
|
public override bool IsSuccessful { get; }
|
|
public string Message { get; }
|
|
}
|
|
} |