diff --git a/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache b/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache
index f29e7cf6bf..1730ca83b9 100644
--- a/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache
+++ b/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache
@@ -216,6 +216,7 @@ namespace {{packageName}}.Client
///
/// HTTP body (e.g. string, JSON).
/// Object type.
+ ///
/// Object representation of the JSON string.
public object Deserialize(string content, Type type, IList headers=null)
{
diff --git a/modules/swagger-codegen/src/main/resources/csharp/ApiException.mustache b/modules/swagger-codegen/src/main/resources/csharp/ApiException.mustache
index 364e2e9991..68e3a03276 100644
--- a/modules/swagger-codegen/src/main/resources/csharp/ApiException.mustache
+++ b/modules/swagger-codegen/src/main/resources/csharp/ApiException.mustache
@@ -20,7 +20,6 @@ namespace {{packageName}}.Client {
///
/// Initializes a new instance of the class.
///
- /// The base path.
public ApiException() {}
///
diff --git a/modules/swagger-codegen/src/main/resources/csharp/api.mustache b/modules/swagger-codegen/src/main/resources/csharp/api.mustache
index 8b958fd0c8..fd170b5ca8 100644
--- a/modules/swagger-codegen/src/main/resources/csharp/api.mustache
+++ b/modules/swagger-codegen/src/main/resources/csharp/api.mustache
@@ -9,6 +9,9 @@ using {{packageName}}.Client;
namespace {{packageName}}.Api
{
{{#operations}}
+ ///
+ /// Represents a collection of functions to interact with the API endpoints
+ ///
public interface I{{classname}}
{
{{#operation}}
@@ -77,7 +80,7 @@ namespace {{packageName}}.Api
///
/// Gets or sets the API client.
///
- /// An instance of the ApiClient
+ /// An instance of the ApiClient
public ApiClient ApiClient {get; set;}
{{#operation}}