mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-01 00:46:33 +01:00
82 lines
2.1 KiB
C#
82 lines
2.1 KiB
C#
using System;
|
|
|
|
namespace TINK.Model.Bikes.Bike
|
|
{
|
|
/// <summary>
|
|
/// Holds tariff info for a single bike.
|
|
/// </summary>
|
|
#if USCSHARP9
|
|
public record TariffDescription
|
|
{
|
|
/// <summary>
|
|
/// Name of the tariff.
|
|
/// </summary>
|
|
public string Name { get; init; }
|
|
|
|
/// <summary>
|
|
/// Number of the tariff.
|
|
/// </summary>
|
|
public int? Number { get; init; }
|
|
|
|
/// <summary>
|
|
/// Costs per hour in euro.
|
|
/// </summary>
|
|
public double FeeEuroPerHour { get; init; }
|
|
|
|
/// <summary>
|
|
/// Costs of the abo per month.
|
|
/// </summary>
|
|
public double AboEuroPerMonth { get; init; }
|
|
|
|
/// <summary>
|
|
/// Costs per hour in euro.
|
|
/// </summary>
|
|
public TimeSpan FreeTimePerSession { get; init; }
|
|
|
|
/// <summary>
|
|
/// Max. costs per day in euro.
|
|
/// </summary>
|
|
public double MaxFeeEuroPerDay { get; init; }
|
|
}
|
|
#else
|
|
public class TariffDescription
|
|
{
|
|
/// <summary>
|
|
/// Name of the tariff.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of the tariff.
|
|
/// </summary>
|
|
public int? Number { get; set; }
|
|
|
|
/// <summary>
|
|
/// Costs per hour in euro.
|
|
/// </summary>
|
|
public double FeeEuroPerHour { get; set; }
|
|
|
|
/// <summary>
|
|
/// Costs of the abo per month.
|
|
/// </summary>
|
|
public double AboEuroPerMonth { get; set; }
|
|
|
|
/// <summary>
|
|
/// Costs per hour in euro.
|
|
/// </summary>
|
|
public TimeSpan FreeTimePerSession { get; set; }
|
|
|
|
/// <summary>
|
|
/// Max. costs per day in euro.
|
|
/// </summary>
|
|
public double MaxFeeEuroPerDay { get; set; }
|
|
|
|
/// <summary> Info about operator agb as HTML (i.g. text and hyperlink). </summary>
|
|
public string OperatorAgb { get; set; }
|
|
|
|
/// <summary> Text which informs users about GPS tracking if tracking is on. </summary>
|
|
public string TrackingInfo { get; set; }
|
|
|
|
}
|
|
#endif
|
|
}
|