sharee.bike-App/TINKLib/Model/IBookingFinishedModel.cs
2023-09-22 11:38:42 +02:00

23 lines
611 B
C#

using TINK.Model.MiniSurvey;
namespace TINK.Model
{
public interface IBookingFinishedModel
{
/// <summary> Minisurvey to query user.</summary>
IMiniSurveyModel MiniSurvey { get; set; }
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
string Co2Saving { get; set; }
/// <summary> Holds info about driven distance. </summary>
string Distance { get; set; }
/// <summary> Holds info about rental duration. </summary>
string Duration { get; set; }
/// <summary> Holds info about accruing rental costs. </summary>
string RentalCosts { get; set; }
}
}