Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public interface IProducesResponseTypeMetadata
/// <summary>
/// Gets the description of the response.
/// </summary>
string? Description { get; }
string? Description => null;

/// <summary>
/// Gets the content types supported by the metadata.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public interface IApiResponseMetadataProvider : IFilterMetadata
/// <summary>
/// Gets the description of the response.
/// </summary>
string? Description { get; }
string? Description => null;

/// <summary>
/// Gets the HTTP status code of the response.
Expand Down
Loading