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

23 lines
623 B
C#
Raw Normal View History

2024-04-09 12:53:23 +02:00
using ShareeBike.Model.MiniSurvey;
2022-08-30 15:42:25 +02:00
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model
2022-08-30 15:42:25 +02:00
{
2022-09-06 16:08:19 +02:00
public interface IBookingFinishedModel
{
/// <summary> Minisurvey to query user.</summary>
IMiniSurveyModel MiniSurvey { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
string Co2Saving { get; set; }
2023-08-31 12:20:06 +02:00
2023-09-22 11:38:42 +02:00
/// <summary> Holds info about driven distance. </summary>
string Distance { get; set; }
/// <summary> Holds info about rental duration. </summary>
string Duration { get; set; }
2023-08-31 12:20:06 +02:00
/// <summary> Holds info about accruing rental costs. </summary>
string RentalCosts { get; set; }
2022-09-06 16:08:19 +02:00
}
2022-08-30 15:42:25 +02:00
}