2021-12-08 17:57:30 +01:00
|
|
|
|
using TINK.Model.MiniSurvey;
|
|
|
|
|
|
|
|
|
|
namespace TINK.Model
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Holds tasks to be accoumplished/ 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();
|
2021-12-08 17:57:30 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
|
|
|
|
|
public string Co2Saving { get; set; }
|
2021-12-08 17:57:30 +01:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
}
|
2021-12-08 17:57:30 +01:00
|
|
|
|
}
|