PWA Fundvelo der Caritas.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }