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

14 lines
323 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using TINK.Model.MiniSurvey;
namespace TINK.Model
{
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; }
}
2022-08-30 15:42:25 +02:00
}