From 36afcdf0988e753ae2178fb8220b02f2c4d0b2b2 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sun, 30 Jan 2022 01:41:08 +0100 Subject: refactor: Convert solution for file-scoped namespaces --- .../Models/Api/TMerchantInfoPayment.cs | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'src/IOL.VippsEcommerce/Models/Api/TMerchantInfoPayment.cs') diff --git a/src/IOL.VippsEcommerce/Models/Api/TMerchantInfoPayment.cs b/src/IOL.VippsEcommerce/Models/Api/TMerchantInfoPayment.cs index ce0cbc3..cb77121 100644 --- a/src/IOL.VippsEcommerce/Models/Api/TMerchantInfoPayment.cs +++ b/src/IOL.VippsEcommerce/Models/Api/TMerchantInfoPayment.cs @@ -1,15 +1,14 @@ using System.Text.Json.Serialization; -namespace IOL.VippsEcommerce.Models.Api +namespace IOL.VippsEcommerce.Models.Api; + +public class TMerchantInfoPayment { - public class TMerchantInfoPayment - { - /// - /// Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN. - /// - /// Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN. - [JsonPropertyName("merchantSerialNumber")] - public string MerchantSerialNumber { get; set; } - } + /// + /// Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN. + /// + /// Unique id for this merchant's sales channel: website, mobile app etc. Short name: MSN. + [JsonPropertyName("merchantSerialNumber")] + public string MerchantSerialNumber { get; set; } } \ No newline at end of file -- cgit v1.3