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

27 lines
813 B
C#

using TINK.Model.MiniSurvey;
namespace TINK.Model
{
/// <summary>
/// Holds tasks to be accomplished/ information shown to user after booking has finished.
/// </summary>
public class BookingFinishedModel : IBookingFinishedModel
{
/// <summary> Minisurvey to query user.</summary>
public IMiniSurveyModel MiniSurvey { get; set; } = new MiniSurveyModel();
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
public string Co2Saving { get; set; }
/// <summary> Holds info about driven distance. </summary>
public string Distance { get; set; }
/// <summary> Holds info about rental duration. </summary>
public string Duration { get; set; }
/// <summary> Holds info about accruing rental costs. </summary>
public string RentalCosts { get; set; }
}
}