using System; namespace Octokit.Internal { /// /// Indicate to the serializer that this property or value /// has a different representation when being serialized to JSON /// [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)] public sealed class ParameterAttribute : Attribute { /// /// The key to use in place of the property's name /// public string Key { get; set; } /// /// The name to use in place of the enum's value /// public string Value { get; set; } } }