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