using TINK.Model.MiniSurvey; namespace TINK.Model { /// /// Holds tasks to be accoumplished/ information shown to user after booking has finished. /// public class BookingFinishedModel { /// /// Minisurvey to query user. /// public MiniSurveyModel MiniSurvey { get; set; } = new MiniSurveyModel(); /// /// Holds info about co2 saving accomplished by using cargo bike. /// public string Co2Saving { get; set; } } }