using System;
using System.Collections.Generic;
using static ShareeBike.Model.Bikes.BikeInfoNS.RentalDescription;
namespace ShareeBike.Model.Bikes.BikeInfoNS
{
public interface IRentalDescription
{
///
/// Name of the tariff.
///
string Name { get; set; }
///
/// Holds the time span for which a bike can be reserved.
///
TimeSpan MaxReservationTimeSpan { get; set; }
///
/// Dynamic language aware tariff elements to be displayed to user.
///
Dictionary TariffEntries { get; set; }
///
/// Well known language aware elements (AGB, tracking info, ...) to be displayed to user.
///
Dictionary InfoEntries { get; set; }
}
}