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