PWA Fundvelo der Caritas.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Defaults.cs 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  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 enum BycicleType {
  24. Men_Bycicle,
  25. Women_Bycicle,
  26. Child_Bycicle,
  27. E_Bike,
  28. Mountain_Bike,
  29. City_Bike,
  30. Tandem,
  31. Trailer
  32. }
  33. }
  34. }