25 lines
534 B
C#
25 lines
534 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 MerchantRequestedCheckbox
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets Id
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets Checked
|
|
/// </summary>
|
|
[JsonProperty("checked")]
|
|
public bool? Checked { get; set; }
|
|
}
|
|
}
|