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ů.
| 1234567891011121314 |
- 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;
- }
- }
- }
|