using System; namespace Octokit.Internal { /// /// Indicate to the serializer that this property or field /// should be included, even when currently set to `null` /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class SerializeNullAttribute : Attribute { } }