PWA Fundvelo der Caritas.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Defaults.cs 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CaritasPWA.Shared.Models {
  6. public class Defaults {
  7. public static ColorItem[] ColorItems = {
  8. new ColorItem(3, "Blue","0,0,255"),
  9. new ColorItem(14, "Brown", "165,42,42"),
  10. new ColorItem(4, "Yellow", "255, 255, 0"),
  11. new ColorItem(8, "Grey", "128, 128, 128"),
  12. new ColorItem(2, "Green", "0, 128, 0"),
  13. new ColorItem(9, "Indigo", "75, 0, 130"),
  14. new ColorItem(11, "Purple", "128, 0, 128"),
  15. new ColorItem(6, "Orange", "255, 165, 0"),
  16. new ColorItem(13, "Pink", "255, 192, 203"),
  17. new ColorItem(1, "Red", "255, 0, 0"),
  18. new ColorItem(5, "Black", "0, 0, 0"),
  19. new ColorItem(12, "Turquoise", "64, 224, 208"),
  20. new ColorItem(10, "Violet", "238, 130, 238"),
  21. new ColorItem(7, "White", "255, 255, 255"),
  22. };
  23. public static BicycleType[] BycicleTypes = {
  24. new BicycleType(1, "Men_Bycicle"),
  25. new BicycleType(2, "Women_Bycicle"),
  26. new BicycleType(3, "Child_Bycicle"),
  27. new BicycleType(4, "E_Bike"),
  28. new BicycleType(5, "Mountain_Bike"),
  29. new BicycleType(6,"City_Bike"),
  30. new BicycleType(7, "Tandem"),
  31. new BicycleType(8, "Trailer")
  32. };
  33. }
  34. }