diff --git a/src/Discord.Net.Commands/CommandServiceConfig.cs b/src/Discord.Net.Commands/CommandServiceConfig.cs
index c33fbd180..1432f4a3e 100644
--- a/src/Discord.Net.Commands/CommandServiceConfig.cs
+++ b/src/Discord.Net.Commands/CommandServiceConfig.cs
@@ -21,8 +21,10 @@ namespace Discord.Commands
/// Determines whether extra parameters should be ignored.
public bool IgnoreExtraArgs { get; set; } = false;
- public IServiceProvider ServiceProvider { get; set; }
+ /// Gets or sets the to use.
+ public IServiceProvider ServiceProvider { get; set; } = null;
- public Func ServiceProviderFactory { get; set; }
+ /// Gets or sets a factory function for the to use.
+ public Func ServiceProviderFactory { get; set; } = null;
}
}