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

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