Guest User

Untitled

a guest
Jan 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. namespace RefitXFSample.Models
  5. {
  6. public class MakeUp
  7. {
  8. public int Id { get; set; }
  9. public string Brand { get; set; }
  10. public string Name { get; set; }
  11. public string Price { get; set; }
  12. public object PriceSign { get; set; }
  13. public object Currency { get; set; }
  14. public string ImageLink { get; set; }
  15. public string ProductLink { get; set; }
  16. public string WebsiteLink { get; set; }
  17. public string Description { get; set; }
  18. public double? Rating { get; set; }
  19. public string Category { get; set; }
  20. public string ProductType { get; set; }
  21. public IList<object> TagList { get; set; }
  22. public DateTime CreatedAt { get; set; }
  23. public DateTime UpdatedAt { get; set; }
  24. public string ProductApiUrl { get; set; }
  25. public string ApiFeaturedImage { get; set; }
  26. public IList<ProductColor> ProductColors { get; set; }
  27. }
  28.  
  29. public class ProductColor
  30. {
  31. public string HexValue { get; set; }
  32. public string ColourName { get; set; }
  33. }
  34. }
Add Comment
Please, Sign In to add comment