Added Command.Synopsis for seperation of short and long descriptions, this being intended for long.
This commit is contained in:
@@ -11,4 +11,14 @@ namespace Discord.Commands
|
||||
Text = text;
|
||||
}
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Method)]
|
||||
public class SynopsisAttribute : Attribute
|
||||
{
|
||||
public string Text { get; }
|
||||
public SynopsisAttribute(string text)
|
||||
{
|
||||
Text = text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user