sharee.bike-App/TINKLib/Model/Bikes/Bike/TariffDescription.cs
2021-05-13 20:03:07 +02:00

41 lines
978 B
C#

using System;
namespace TINK.Model.Bikes.Bike
{
/// <summary>
/// Holds tariff info for a single bike.
/// </summary>
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; }
}
}