PWA Fundvelo der Caritas.
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 1234567891011121314 |
- 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;
- }
- }
- }
|