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.

12345678910111213141516171819
  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 string Mail { get; set; } // required
  9. public int? TypId { get; set; } // required
  10. public int? MarkeId { get; set; } // required
  11. public int? FarbeId { get; set; } // required
  12. public string RahmenNummer { get; set; }
  13. public string Bemerkung { get; set; }
  14. public string Foto { get; set; }
  15. public string FotoString { get; set; }
  16. }
  17. }