59 lines
1.6 KiB
C#
59 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using VECV_WebApi.Models.Activity;
|
|
using VECV_WebApi.Models.Customer;
|
|
using VECV_WebApi.Models.Ticket;
|
|
using VECV_WebApi.Models.Vehicle;
|
|
|
|
namespace VECV_WebApi.Models.Mobile
|
|
{
|
|
public class MobileInputModel
|
|
{
|
|
public string Token { get; set; }
|
|
public string UtcMinute { get; set; }
|
|
|
|
public string TicketId { get; set; }
|
|
|
|
public string VehicleRegistrationNumber { get; set; }
|
|
public string CustomerMobile1 { get; set; }
|
|
public string TicketNo { get; set; }
|
|
|
|
public string DelerId { get; set; }
|
|
public string VehicleType { get; set; }
|
|
|
|
|
|
public string CustomerId { get; set; }
|
|
public string CustomerMobileNumber1 { get; set; }
|
|
|
|
public string OpenCloseStatus { get; set; }
|
|
|
|
public string Id { get; set; }
|
|
public string RegistrationNo { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class MobileOutputModel
|
|
{
|
|
public string Status { get; set; }
|
|
public string Message { get; set; }
|
|
|
|
public List<OpenTicketActivityTicketWiseModel> list_OpenTicketActivity { get; set; }
|
|
|
|
public List<CloseTicketActivityTicketWiseModel> list_CloseTicketActivity { get; set; }
|
|
|
|
public List<CustomerVehicleModel> list_CustomerDetails { get; set; }
|
|
|
|
public EscalationLevelOutputModel escalationLevelOutputModel { get; set; }
|
|
|
|
public CustomerModel customerModel { get; set; }
|
|
|
|
public List<CustomerOpenTicketFullDetailsTicketWise> list_CustomerOpenTicketFullDetails { get; set; }
|
|
|
|
public VehicleModel vehicleModel { get; set; }
|
|
}
|
|
|
|
|
|
} |