mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
31 lines
869 B
C#
31 lines
869 B
C#
using TINK.Model;
|
|
|
|
namespace TINK.ViewModel.Bikes
|
|
{
|
|
public interface IRentalProcess
|
|
{
|
|
/// <summary>
|
|
/// Gets the id of the bike which is rental ends.
|
|
/// </summary>
|
|
string BikeId { get; }
|
|
|
|
CurrentRentalProcess State { get; set; }
|
|
|
|
/// <summary> Holds info about current step in rental process. </summary>
|
|
int? StepIndex { get; set; }
|
|
|
|
/// <summary> Holds info about current step of rental process. </summary>
|
|
string StepInfoText { get; set; }
|
|
|
|
/// <summary> Holds important info about current step of rental process. </summary>
|
|
string ImportantStepInfoText { get; set; }
|
|
|
|
/// <summary> Holds info about status of current rental process. </summary>
|
|
CurrentStepStatus Result { get; set; }
|
|
|
|
/// <summary>
|
|
/// Holds the info returned from back end when rent is ended.
|
|
/// </summary>
|
|
BookingFinishedModel EndRentalInfo { get; set; }
|
|
}
|
|
}
|