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ů.

Brand.cs 309B

1234567891011121314
  1. namespace cwebplusApp.Shared.Models {
  2. public class Brand {
  3. public int Id { get; set; }
  4. public string Bezeichnung { get; set; }
  5. public Brand() { }
  6. public Brand(int id, string name) {
  7. Id = id;
  8. Bezeichnung = name;
  9. }
  10. }
  11. }