| 123456789101112131415161718 |
- namespace cwebplusApp.Shared.Models {
- public abstract class Report {
-
- public string Anrede { get; set; } // required
- public string Vorname { get; set; } // required
- public string Nachname { get; set; } // required
- public string Mobil { get; set; }
- public string Telefon { get; set; }
- public int TypId { get; set; } // required
- public int MarkeId { get; set; } // required
- public int FarbeId { get; set; } // required
- public string RahmenNummer { get; set; }
- public string Bemerkung { get; set; }
- public string Foto { get; set; }
- public string FotoString { get; set; }
-
- }
- }
|