You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
446 B
14 lines
446 B
|
|
namespace DealerSelection.WebApi.Models;
|
|
|
|
public class BookingConfirmationRequest
|
|
{
|
|
public int BuId { get; set; }
|
|
public int RecordId { get; set; }
|
|
public string BookingId { get; set; }
|
|
public string PaymentTransactionStatus { get; set; }
|
|
public string AmountPaid { get; set; }
|
|
public string PaymentTransactionId { get; set; }
|
|
public string PaymentType { get; set; }
|
|
public string CardName { get; set; }
|
|
}
|