WIP: Add iOS version #10

Draft
Deadpikle wants to merge 67 commits from feature/ios into main
Showing only changes of commit a0ef69e8ea - Show all commits
+3 -2
View File
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Text;
using System.Text.Json;
@@ -11,7 +12,7 @@ namespace MayShow.Models;
class PDFReport : PDFReportInfo
{
private List<ReportFile> _files;
private ObservableCollection<ReportFile> _files;
private DateTime? _lastGenerated;
public PDFReport() : base()
@@ -30,7 +31,7 @@ class PDFReport : PDFReportInfo
LastSaved = info.LastSaved;
}
public List<ReportFile> Files
public ObservableCollection<ReportFile> Files
{
get => _files;
set { _files = value; NotifyPropertyChanged(); }