This repository has been archived on 2026-08-10. You can view files and clone it, but cannot push or open issues or pull requests.
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; }
}
}