- using CaritasPWA.Shared.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace CaritasPWA.Shared {
- public interface ILFBicycleRest {
-
- List<ColorItem> GetColors();
-
- List<BicycleType> GetBicycleTypes();
- }
- }
|