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 --- src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs') diff --git a/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs b/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs index a558638..7978a19 100644 --- a/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs +++ b/src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs @@ -1,14 +1,13 @@ using System.Text.Json.Serialization; -namespace IOL.VippsEcommerce.Models.Api +namespace IOL.VippsEcommerce.Models.Api; + +public class TCustomerInfo { - public class TCustomerInfo - { - /// - /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. - /// - /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. - [JsonPropertyName("mobileNumber")] - public string MobileNumber { get; set; } - } + /// + /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. + /// + /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. + [JsonPropertyName("mobileNumber")] + public string MobileNumber { get; set; } } \ No newline at end of file -- cgit v1.3