using ShareeBike.Model.MiniSurvey; namespace ShareeBike.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; } /// Holds info about driven distance. string Distance { get; set; } /// Holds info about rental duration. string Duration { get; set; } /// Holds info about accruing rental costs. string RentalCosts { get; set; } } }