| 12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace CaritasPWA.Shared.Models {
- public class Defaults {
-
- public static ColorItem[] ColorItems = {
- new ColorItem(3, "Blue","0,0,255"),
- new ColorItem(14, "Brown", "165,42,42"),
- new ColorItem(4, "Yellow", "255, 255, 0"),
- new ColorItem(8, "Grey", "128, 128, 128"),
- new ColorItem(2, "Green", "0, 128, 0"),
- new ColorItem(9, "Indigo", "75, 0, 130"),
- new ColorItem(11, "Purple", "128, 0, 128"),
- new ColorItem(6, "Orange", "255, 165, 0"),
- new ColorItem(13, "Pink", "255, 192, 203"),
- new ColorItem(1, "Red", "255, 0, 0"),
- new ColorItem(5, "Black", "0, 0, 0"),
- new ColorItem(12, "Turquoise", "64, 224, 208"),
- new ColorItem(10, "Violet", "238, 130, 238"),
- new ColorItem(7, "White", "255, 255, 255"),
- };
-
- public enum BycicleType {
- Men_Bycicle,
- Women_Bycicle,
- Child_Bycicle,
- E_Bike,
- Mountain_Bike,
- City_Bike,
- Tandem,
- Trailer
- }
- }
- }
|