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

21 lines
485 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace GMCabsDriverAssistantSolution.Models.Rydo
{
public class EftposLoginRequest
{
#region Properties
[JsonPropertyName("driver_id")]
public Guid DriverId { get; set; }
[JsonPropertyName("mobile_number")]
public string MobileNumber { get; set; }
#endregion
}
}