2023-05-04 12:05:13 +05:30

15 lines
363 B
C#

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; }
}
}