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.

ILFBicycleRest.cs 307B

1234567891011121314
  1. using CaritasPWA.Shared.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace CaritasPWA.Shared {
  7. public interface ILFBicycleRest {
  8. List<ColorItem> GetColors();
  9. List<BicycleType> GetBicycleTypes();
  10. }
  11. }