diff options
Diffstat (limited to 'src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs')
| -rw-r--r-- | src/IOL.VippsEcommerce/Models/Api/TCustomerInfo.cs | 19 |
1 files changed, 9 insertions, 10 deletions
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 - { - /// <summary> - /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. - /// </summary> - /// <value>Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.</value> - [JsonPropertyName("mobileNumber")] - public string MobileNumber { get; set; } - } + /// <summary> + /// Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code. + /// </summary> + /// <value>Mobile number of the user who has to pay for the transation from Vipps. Allowed format: xxxxxxxx. No country code.</value> + [JsonPropertyName("mobileNumber")] + public string MobileNumber { get; set; } }
\ No newline at end of file |
