using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CaritasPWA.Shared.Models { public class BicycleType { public int Index { get; set; } public string Type { get; set; } public BicycleType() { } public BicycleType(int index, string type) { Index = index; Type = type; } } }