mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
/// <summary>
|
|
/// Successor of TarifDescription- object.
|
|
/// Manages tariff- and rental info.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class RentalDescription
|
|
{
|
|
/// <summary>
|
|
/// Name of the tariff.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string name { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Id of the tariff.
|
|
/// </summary>
|
|
[DataMember]
|
|
public string id { get; private set; }
|
|
|
|
/// <summary> Holds tariff entires to show to user.</summary>
|
|
[DataMember]
|
|
public Dictionary<
|
|
string /* Key of tariff object for sorting purposes*/,
|
|
string[] /* Holds two Elements: first element is the description of the element (example: "Max Gebühr"), second is the value (example: "9.00 € / Tag")*/>
|
|
tarif_elements
|
|
{ get; private set; }
|
|
|
|
/// <summary> Holds tariff entires to show to user.</summary>
|
|
[DataMember]
|
|
public Dictionary<
|
|
string /* Key of info object for sorting purposes*/,
|
|
string[] /* Holds two Elements: first element is the key of the element (example: "Tracking"), second is the value (example: "Ich stimme der Speicherung (Tracking) meiner Fahrstrecke ....")*/>
|
|
rental_info
|
|
{ get; private set; }
|
|
}
|
|
}
|