using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VECV_WebApi.Models.Notification { public class NotificationModel { public string KamTicketId { get; set; } public string NotificationId { get; set; } public string KamName { get; set; } public string VehicleRegNo { get; set; } public string NotificationTime { get; set; } public string MobileNo1 { get; set; } } public class NotificationInputModel { public string Token { get; set; } public int UtcMinute { get; set; } public string NotificationId { get; set; } } public class NotificationOutputModel { public string Message { get; set; } public string Status { get; set; } public List NotificationList { get; set; } } // Added by priya 20-04-2022 public class TicketWhatsupAPIModel { /// /// Get or set ticket status alias /// public string TicketStatusAlias { get; set; } /// /// Get or set status /// // public string Status { get; set; } /// /// Get or set vehicle registration number /// public string VehicleRegisterNumber { get; set; } /// /// Get or set ticket id /// public string TicketId { get; set; } /// /// Get or set ticket id alias /// public string TicketIdAlias { get; set; } /// /// Get or set ticket id alias /// public string WorkshopName { get; set; } /// /// Get or set ticket id alias /// public string WorksManagerName { get; set; } /// /// Get or set ticket id alias /// public string WorksManagerContactNo { get; set; } /// /// Get or set ticket id alias /// public string TechnicianName { get; set; } /// /// Get or set ticket id alias /// public string TechnicianContactNo { get; set; } //public string Message { get; set; } public string TicketActivityStatus { get; set; } } }