27 lines
642 B
C#
27 lines
642 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace gehGassi.Klarna.Checkout
|
|
{
|
|
public class ProductV1
|
|
{
|
|
/// <summary>
|
|
/// Carrier product name
|
|
/// </summary>
|
|
/// <value>Carrier product name</value>
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Carrier product identifier
|
|
/// </summary>
|
|
/// <value>Carrier product identifier</value>
|
|
[JsonProperty("identifier")]
|
|
public string Identifier { get; set; }
|
|
}
|
|
}
|