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; } } }