Files
octokit.net/Octokit/Helpers/SerializeAsBase64Attribute.cs

13 lines
338 B
C#

using System;
namespace Octokit.Helpers
{
/// <summary>
/// Attribute used to denote that a string property should be serialized as a base64 encoded string.
/// </summary>
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public sealed class SerializeAsBase64Attribute : Attribute
{
}
}