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

27 lines
825 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.Model.MiniSurvey;
2021-12-08 17:57:30 +01:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model
2021-12-08 17:57:30 +01:00
{
2022-09-06 16:08:19 +02:00
/// <summary>
2023-07-04 11:06:38 +02:00
/// Holds tasks to be accomplished/ information shown to user after booking has finished.
2022-09-06 16:08:19 +02:00
/// </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
2023-09-22 11:38:42 +02:00
/// <summary> Holds info about driven distance. </summary>
public string Distance { get; set; }
/// <summary> Holds info about rental duration. </summary>
public string Duration { get; set; }
2023-08-31 12:20:06 +02:00
/// <summary> Holds info about accruing rental costs. </summary>
public string RentalCosts { get; set; }
2022-09-06 16:08:19 +02:00
}
2021-12-08 17:57:30 +01:00
}