From e6ca7a484d9cc213fb00c34ebf7cb55ace892c04 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Wed, 31 Mar 2021 18:00:22 +0200 Subject: Initial commit --- .../Models/VippsConfigurationKeyName.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs (limited to 'src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs') diff --git a/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs b/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs new file mode 100644 index 0000000..2ed338b --- /dev/null +++ b/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs @@ -0,0 +1,17 @@ +using System; + +namespace IOL.VippsEcommerce.Models +{ + 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; } + } +} \ No newline at end of file -- cgit v1.3