mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 02:26:29 +01:00
21 lines
571 B
C#
21 lines
571 B
C#
using TINK.Model.MiniSurvey;
|
|
|
|
namespace TINK.Model
|
|
{
|
|
/// <summary>
|
|
/// Holds tasks to be accoumplished/ information shown to user after booking has finished.
|
|
/// </summary>
|
|
public class BookingFinishedModel
|
|
{
|
|
/// <summary>
|
|
/// Minisurvey to query user.
|
|
/// </summary>
|
|
public MiniSurveyModel MiniSurvey { get; set; } = new MiniSurveyModel();
|
|
|
|
/// <summary>
|
|
/// Holds info about co2 saving accomplished by using cargo bike.
|
|
/// </summary>
|
|
public string Co2Saving { get; set; }
|
|
|
|
}
|
|
}
|