34 lines
734 B
C#
34 lines
734 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 TimeslotV1
|
|
{
|
|
/// <summary>
|
|
/// Id
|
|
/// </summary>
|
|
/// <value>Id</value>
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Start time
|
|
/// </summary>
|
|
/// <value>Start time</value>
|
|
[JsonProperty("start")]
|
|
public string Start { get; set; }
|
|
|
|
/// <summary>
|
|
/// End time
|
|
/// </summary>
|
|
/// <value>End time</value>
|
|
[JsonProperty("end")]
|
|
public string End { get; set; }
|
|
}
|
|
}
|