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