using TINK.Model.MiniSurvey;
namespace TINK.Model
{
public interface IBookingFinishedModel
{
/// Minisurvey to query user.
IMiniSurveyModel MiniSurvey { get; set; }
/// Holds info about co2 saving accomplished by using cargo bike.
string Co2Saving { get; set; }
}
}