PWA Fundvelo der Caritas.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ILFBicycleRest.cs 286B

12345678910111213
  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. List<Brand> GetBrands();
  8. }
  9. }