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
{
///
/// Id
///
/// Id
[JsonProperty("id")]
public string Id { get; set; }
///
/// Start time
///
/// Start time
[JsonProperty("start")]
public string Start { get; set; }
///
/// End time
///
/// End time
[JsonProperty("end")]
public string End { get; set; }
}
}