PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

SearchService.cs 333B

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