using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace GMCabsDriverAssistant.Models
|
|
{
|
|
public class AcceptBookingTimerDto
|
|
{
|
|
public int PendingSeconds { get; set; }
|
|
public string PickUPAddress { get; set; }
|
|
public string DropUpAddress { get; set; }
|
|
public bool IsFutureBooking { get; set; }
|
|
}
|
|
}
|