PWA Fundvelo der Caritas.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

SearchService.cs 342B

123456789101112131415
  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. }
  7. public SearchService(int id, string type) {
  8. Id = id;
  9. Bezeichnung = type;
  10. }
  11. }
  12. }