PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BicycleType.cs 427B

12345678910111213141516171819
  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 BicycleType {
  7. public int Index { get; set; }
  8. public string Type { get; set; }
  9. public BicycleType() { }
  10. public BicycleType(int index, string type) {
  11. Index = index;
  12. Type = type;
  13. }
  14. }
  15. }