Browse Source

Fix accidental line join

tags/1.0-rc
james7132 8 years ago
parent
commit
790ca10d17
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      src/Discord.Net.Commands/Builders/ModuleBuilder.cs

+ 2
- 1
src/Discord.Net.Commands/Builders/ModuleBuilder.cs View File

@@ -14,7 +14,8 @@ namespace Discord.Commands.Builders
public CommandService Service { get; }
public ModuleBuilder Parent { get; }
public string Name { get; set; }
public string Summary { get; set; } public string Remarks { get; set; }
public string Summary { get; set; }
public string Remarks { get; set; }

public IReadOnlyList<CommandBuilder> Commands => _commands;
public IReadOnlyList<ModuleBuilder> Modules => _submodules;


Loading…
Cancel
Save