aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
blob: d56f908a43e6db6aa3bfd444451076591a48afad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
}