PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Report.cs 808B

123456789101112131415161718
  1. namespace cwebplusApp.Shared.Models {
  2. public abstract class Report {
  3. public string Anrede { get; set; } // required
  4. public string Vorname { get; set; } // required
  5. public string Nachname { get; set; } // required
  6. public string Mobil { get; set; }
  7. public string Telefon { get; set; }
  8. public int? TypId { get; set; } // required
  9. public int? MarkeId { get; set; } // required
  10. public int? FarbeId { get; set; } // required
  11. public string RahmenNummer { get; set; }
  12. public string Bemerkung { get; set; }
  13. public string Foto { get; set; }
  14. public string FotoString { get; set; }
  15. }
  16. }