mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
13 lines
338 B
C#
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
|
|
{
|
|
}
|
|
}
|