mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
14 lines
356 B
C#
14 lines
356 B
C#
|
using TINK.Model.MiniSurvey;
|
|||
|
|
|||
|
namespace TINK.Model
|
|||
|
{
|
|||
|
public interface IBookingFinishedModel
|
|||
|
{
|
|||
|
/// <summary> Minisurvey to query user.</summary>
|
|||
|
IMiniSurveyModel MiniSurvey { get; set; }
|
|||
|
|
|||
|
/// <summary> Holds info about co2 saving accomplished by using cargo bike. </summary>
|
|||
|
string Co2Saving { get; set; }
|
|||
|
}
|
|||
|
}
|