Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. public class SmartStoreUserLoginAllowedStore
  2. {
  3. public string storeId { get; set; }
  4. public string storeName { get; set; }
  5. }
  6.  
  7. public class SmartStoreUserLoginParameters
  8. {
  9. public string thresholdValueQuantityField { get; set; }
  10. public string thresholdValuePriceField { get; set; }
  11. public string defaultArticleStatusesToSearchFor { get; set; }
  12. public string isOutsideAssortmentSortingSupported { get; set; }
  13. }
  14.  
  15. public class LoginObject
  16. {
  17. public string id { get; set; }
  18. public string userName { get; set; }
  19. public string fullName { get; set; }
  20. public string password { get; set; }
  21. public string changePassword { get; set; }
  22. public string active { get; set; }
  23. public string token { get; set; }
  24. public string allowedOrigin { get; set; }
  25. public string selectedStoreId { get; set; }
  26. public string defaultLanguageCode { get; set; }
  27. public List<SmartStoreUserLoginAllowedStore> allowedStores { get; set; }
  28. public List<string> roles { get; set; }
  29. public string defaultStoreId { get; set; }
  30. public string restrictedPricePeriod { get; set; }
  31. public SmartStoreUserLoginParameters parameters { get; set; }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement