-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: Add
IncludeXmlCommentsWithRemarks
improvements
- Loading branch information
Showing
10 changed files
with
256 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
namespace WebApi3._1_Swashbuckle.Models | ||
{ | ||
/// <summary> | ||
/// CommandType | ||
/// </summary> | ||
public class CommandType | ||
{ | ||
/// <summary> | ||
/// Name. | ||
/// </summary> | ||
public string Name { get; set; } | ||
|
||
/// <summary> | ||
/// Description. | ||
/// </summary> | ||
public string Description { get; set; } | ||
|
||
/// <summary> | ||
/// External Id. | ||
/// </summary> | ||
public string ExternalId { get; set; } | ||
|
||
/// <summary> | ||
/// Is Read Only. | ||
/// </summary> | ||
/// <remarks> | ||
/// Is Read Only remarks. | ||
/// </remarks> | ||
public bool IsReadOnly { get; set; } | ||
|
||
/// <summary> | ||
/// Is Active. | ||
/// </summary> | ||
/// <remarks> | ||
/// Is Active remarks. | ||
/// </remarks> | ||
public bool IsActive { get; set; } | ||
} | ||
|
||
/// <summary> | ||
/// AddSomeCommand. | ||
/// </summary> | ||
public class AddSomeCommand | ||
{ | ||
/// <inheritdoc cref="CommandType.Name"/> | ||
/// <example>Example</example> | ||
public string Name { get; set; } | ||
|
||
/// <inheritdoc cref="CommandType.Description"/> | ||
/// <example>Example</example> | ||
public string Description { get; set; } | ||
|
||
/// <inheritdoc cref="CommandType.ExternalId"/> | ||
/// <example>Example</example> | ||
public string ExternalId { get; set; } | ||
|
||
/// <inheritdoc cref="CommandType.IsReadOnly"/> | ||
/// <example>false</example> | ||
public bool IsReadOnly { get; set; } | ||
|
||
/// <inheritdoc cref="CommandType.IsActive"/> | ||
/// <example>true</example> | ||
public bool IsActive { get; set; } | ||
} | ||
} |
Oops, something went wrong.