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

BicycleType.cs 327B

1234567891011121314
  1. namespace cwebplusApp.Shared.Models {
  2. public class BicycleType {
  3. public int Id { get; set; }
  4. public string Bezeichnung { get; set; }
  5. public BicycleType() { }
  6. public BicycleType(int id, string type) {
  7. Id = id;
  8. Bezeichnung = type;
  9. }
  10. }
  11. }