namespace cwebplusApp.Shared.Models { public class Brand { public int Id { get; set; } public string Bezeichnung { get; set; } public Brand() { } public Brand(int id, string name) { Id = id; Bezeichnung = name; } } }