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 250B

1234567891011
  1. using CaritasPWA.Shared.Models;
  2. using System.Collections.Generic;
  3. namespace CaritasPWA.Shared.Services {
  4. public interface ILFBicycleRest {
  5. List<ColorItem> GetColors();
  6. List<BicycleType> GetBicycleTypes();
  7. }
  8. }