mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-17 04:53:09 +00:00
12 lines
438 B
C#
12 lines
438 B
C#
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// Container for the static <see cref="Empty"/> method that represents an
|
|
/// intentional empty request body to avoid overloading <code>null</code>.
|
|
/// </summary>
|
|
public static class RequestBody
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2211:NonConstantFieldsShouldNotBeVisible")]
|
|
public static object Empty = new object();
|
|
}
|
|
} |