sharee.bike-App/TINKLib/Model/BookingFinishedModel.cs

18 lines
547 B
C#
Raw Normal View History

2021-12-08 17:57:30 +01:00
using TINK.Model.MiniSurvey;
namespace TINK.Model
{
/// <summary>
/// Holds tasks to be accoumplished/ information shown to user after booking has finished.
/// </summary>
2022-08-30 15:42:25 +02:00
public class BookingFinishedModel : IBookingFinishedModel
2021-12-08 17:57:30 +01:00
{
2022-08-30 15:42:25 +02:00
/// <summary> Minisurvey to query user.</summary>
public IMiniSurveyModel MiniSurvey { get; set; } = new MiniSurveyModel();
2021-12-08 17:57:30 +01:00
2022-08-30 15:42:25 +02:00
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
2021-12-08 17:57:30 +01:00
public string Co2Saving { get; set; }
}
}