Files
octokit.net/Octokit/Helpers/SerializeNullAttribute.cs
2015-01-03 09:32:07 -08:00

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
{
}
}