mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
13 lines
354 B
C#
13 lines
354 B
C#
using System;
|
|
|
|
namespace Octokit.Internal
|
|
{
|
|
/// <summary>
|
|
/// Indicate to the serializer that this property or field
|
|
/// should be included, even when currently set to `null`
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public sealed class SerializeNullAttribute : Attribute
|
|
{
|
|
}
|
|
} |