PWA Fundvelo der Caritas.
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 123456789101112131415 |
- namespace cwebplusApp.Shared.Models {
- public class SearchService {
-
- public int Id { get; set; }
- public string Bezeichnung { get; set; }
-
- public SearchService() {
- }
-
- public SearchService(int id, string type) {
- Id = id;
- Bezeichnung = type;
- }
- }
- }
|