namespace VECV_WebApi.Models.User { #region Namspaces using System; using System.Collections.Generic; using System.Linq; using System.Web; #endregion #region Model Classes public class LogOnModel { public string token { get; set; } public string UserName { get; set; } public string Password { get; set; } public long userId { get; set; } public string role { get; set; } public string Message { get; set; } public string Status { get; set; } public bool isValid { get; set; } public string Designation { get; set; } public string ProductVariant { get; set; } public string Organization { get; set; } public string Name { get; set; } } /// /// This class contain user details /// public class UserModel { /// /// Get or set User Id /// public Int64 UserId { get; set; } /// /// Get or set Authorization Engine Id /// public string AuthEngineId { get; set; } /// /// Get or set User Name /// public string UserName { get; set; } /// /// Get or set User Designation /// public string Designation { get; set; } /// /// Get or set Object Id /// public string ObjectId { get; set; } /// /// Get or set Organization Id /// public int OrganizationId { get; set; } /// /// Get or set City /// public string City { get; set; } /// /// Get or set State /// public string State { get; set; } /// /// Get or set Region /// public string Region { get; set; } /// /// Get or set Language /// public string Language { get; set; } /// /// Get or set Time Zone Id /// public Int64 TimeZoneId { get; set; } /// /// Get or set Display Name /// public string DisplayName { get; set; } /// /// Get or set Offset In Minutes /// public double? OffsetInMinute { get; set; } /// /// Get or set Display Id /// public string DisplayId { get; set; } /// /// Get or set Organization Name /// public string OrganizationName { get; set; } /// /// Get or set Organization Alias /// public string OrganizationAlias { get; set; } /// /// Get or set Organization City /// public string OrganizationCity { get; set; } /// /// Get or set Organization State /// public string OrganizationState { get; set; } /// /// Get or set Organization Country /// public string OrganizationCountry { get; set; } /// /// Get or set Organization Description /// public string OrganizationDescription { get; set; } /// /// Get or set Organization Path /// public string OrganizationPath { get; set; } /// /// Get or set Organization Depth /// public string OrganizationDepth { get; set; } /// /// Get or set Organization Color /// public string OrganizationColor { get; set; } /// /// Get or set Organization Region /// public string OrganizationRegion { 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; } /// /// Get or set Vehicle Tagging /// public string VehicleTagging { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public Boolean? IsDeleted { get; set; } public string StateId { get; set; } public string CityId { get; set; } } /// /// This class contain dealer properties /// public class DealerModel { /// /// Get or set User Id /// public string UserId { get; set; } /// /// Get or set Token /// public string Token { get; set; } /// /// Get or set Message /// public string Message { get; set; } /// /// Get or set Dealer Id /// public string DealerId { get; set; } /// /// Get or set Organization Id /// public int? OrganizationId { get; set; } /// /// Get or set Dealer Name /// public string DealerName { get; set; } /// /// Get or set Dealer City /// public string DealerCity { get; set; } /// /// Get or set Dealer State /// public string DealerState { get; set; } /// /// Get or set Dealer Default Latitude /// public string DealerDefaultLatitude { get; set; } /// /// Get or set Dealer Default Longitude /// public string DealerDefaultLongitude { get; set; } } #endregion }