using System; using System.Collections.Generic; using static TINK.Model.Bikes.BikeInfoNS.RentalDescription; namespace TINK.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; } } }