| 12345678910111213141516171819 |
- 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 string Mail { get; set; } // required
- 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; }
-
- }
- }
|