| 12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- 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;
- }
- }
- }
|