PWA Fundvelo der Caritas.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

FoundReportRepositoryItem.cs 399B

1234567891011
  1. namespace cwebplusApp.Shared.Models {
  2. public class FoundReportRepositoryItem : ReportRepositoryItem {
  3. private FoundReport report;
  4. public FoundReport Report { get => report; set => report = value; }
  5. public FoundReportRepositoryItem(FoundReport _report, long identifier) : base(Type.FOUND, identifier) {
  6. this.report = _report;
  7. }
  8. }
  9. }