namespace VECV_WebApi.Models.Tracking { #region region Namespaces using System; using System.Collections.Generic; using System.Linq; using System.Web; using VECV_WebApi.Models.ServiceEngineer; #endregion #region Model Classes /// /// This class contain tracking and user detail properties /// public class CurrentTracking { /// /// Get or set status /// public string status { get; set; } /// /// Get or set Message /// public string Message { get; set; } /// /// Get or set user list /// public List ListUsers { get; set; } /// /// Get or set tracking list /// public List ListTracking { get; set; } } /// /// This class contain image activity properties /// public class TrackingModel { /// /// Get or set Log id /// public int LogId { get; set; } /// /// Get or set device id of device or user /// public string DeviceAlias { get; set; } /// /// Get or set latitude value /// public string Latitude { get; set; } /// /// Get or set logitude value /// public string Longitude { get; set; } /// /// Get or set log time /// public string LogTime { get; set; } /// /// Get or set security token value for service access /// public string Token { get; set; } /// /// Get or set security token value for service access /// // public List TrackingDetail { get; set; } /// /// Get or set isconnected flag /// public string IsConnected { get; set; } /// /// Get or set x cordinate /// public string Xcordinate { get; set; } /// /// Get or set y cordinate /// public string Ycordinate { get; set; } /// /// Get or set z cordinate /// public string Zcordinate { get; set; } /// /// Get or set creation time /// public string CreationTime { get; set; } /// /// Get or set BatteryStatus /// public string BatteryStatus { get; set; } /// /// Get or set GpsStatus /// public string GpsStatus { get; set; } /// /// Get or set IsCharging /// public string IsCharging { get; set; } /// /// Get or set IsPowerSaving /// public string IsPowerSaving { get; set; } /// /// Get or set status /// public string status { get; set; } /// /// Get or set Message /// public string Message { get; set; } /// /// Get or set trackind detail /// public List BulkTrackngDetail { get; set; } /// /// Get or set device status /// public string DeviceStatus { get; set; } } /// /// This contain tracking status properties /// public class TrackingStatus { /// /// Get or set status /// public int status { get; set; } /// /// Get or set Message /// public string Message { get; set; } } /// /// This class contain tracking properties /// public class TrackingGetModel { #region Properties /// /// Get or set device id /// public string DeviceAlias { get; set; } /// /// Get or set token value for authorize service user /// public string Token { get; set; } /// /// Get or set Fromdate /// public string FromDate { get; set; } /// /// Get or set to Date /// public string ToDate { get; set; } /// /// Get or set utc minute /// public int UtcMinute { get; set; } #endregion } /// /// This class contain dealer van properties /// public class DealerVanModel { /// /// Get or set Dealer list /// public List ListDealer { get; set; } /// /// Get or set van city list /// public List ListVanCity { get; set; } /// /// Get or set van state list /// public List ListVanState { get; set; } /// /// Get or set status /// public string status { get; set; } /// /// Get or set Message /// public string Message { get; set; } /// /// Get or set Token /// public string Token { get; set; } } /// /// This class contain dealer properties /// public class DealerModel { /// /// Get or set /// public string DealerID { get; set; } /// /// Get or set /// public string DealerName { get; set; } } /// /// THis class contain van city properties /// public class VanCityModel { /// /// Get or set Van ID /// public string VanID { get; set; } /// /// Get or set Van City /// public string VanCity { get; set; } } /// /// This class contain van state properties /// public class VanstateModel { /// /// Get or set Van ID /// public string VanID { get; set; } /// /// Get or set Van State /// public string VanState { get; set; } } /// /// contains properties for van-dealer list /// #endregion }