remove exception comment on model constructor to avoid compile warning

This commit is contained in:
wing328
2016-02-23 19:32:49 +08:00
parent 82d7c2d780
commit eed91d335d
6 changed files with 0 additions and 6 deletions

View File

@@ -22,7 +22,6 @@ namespace {{packageName}}.Model
/// <summary>
/// Initializes a new instance of the <see cref="{{classname}}" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
{{#vars}}{{^isReadOnly}} /// <param name="{{name}}">{{#description}}{{description}}{{/description}}{{^description}}{{name}}{{/description}}{{#required}} (required){{/required}}{{#defaultValue}} (default to {{defaultValue}}){{/defaultValue}}.</param>
{{/isReadOnly}}{{/vars}}
public {{classname}}({{#vars}}{{^isReadOnly}}{{{datatype}}} {{name}} = null{{#hasMore}}, {{/hasMore}}{{/isReadOnly}}{{/vars}})

View File

@@ -20,7 +20,6 @@ namespace IO.Swagger.Model
/// <summary>
/// Initializes a new instance of the <see cref="Category" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
/// <param name="Id">Id.</param>
/// <param name="Name">Name.</param>

View File

@@ -20,7 +20,6 @@ namespace IO.Swagger.Model
/// <summary>
/// Initializes a new instance of the <see cref="Order" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
/// <param name="PetId">PetId.</param>
/// <param name="Quantity">Quantity.</param>
/// <param name="ShipDate">ShipDate.</param>

View File

@@ -20,7 +20,6 @@ namespace IO.Swagger.Model
/// <summary>
/// Initializes a new instance of the <see cref="Pet" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
/// <param name="Id">Id.</param>
/// <param name="Category">Category.</param>
/// <param name="Name">Name (required).</param>

View File

@@ -20,7 +20,6 @@ namespace IO.Swagger.Model
/// <summary>
/// Initializes a new instance of the <see cref="Tag" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
/// <param name="Id">Id.</param>
/// <param name="Name">Name.</param>

View File

@@ -20,7 +20,6 @@ namespace IO.Swagger.Model
/// <summary>
/// Initializes a new instance of the <see cref="User" />class.
/// </summary>
/// <exception cref="System.InvalidDataException">Thrown when required property is null</exception>
/// <param name="Id">Id.</param>
/// <param name="Username">Username.</param>
/// <param name="FirstName">FirstName.</param>