aboutsummaryrefslogtreecommitdiffstats
path: root/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs')
-rw-r--r--src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs25
1 files changed, 12 insertions, 13 deletions
diff --git a/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs b/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
index d429b1e..d56f908 100644
--- a/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
+++ b/src/IOL.VippsEcommerce/Models/VippsConfigurationKeyName.cs
@@ -1,18 +1,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;
- }
+namespace IOL.VippsEcommerce.Models;
- public string Name { get; }
+[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; }
} \ No newline at end of file