summaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
blob: d429b1e9e047c855620aa47682f8353679582a39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace IOL.VippsEcommerce.Models
{
	[AttributeUsage(AttributeTargets.Property)]
	internal sealed class VippsConfigurationKeyName : Attribute
	{
		/// <summary>
		/// Specifies a name for this configuration value.
		/// </summary>
		/// <param name="name">Name of the configuration value.</param>
		public VippsConfigurationKeyName(string name) {
			Name = name;
		}

		public string Name { get; }
	}
}