WIP: Add iOS version #10
@@ -1,5 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Collections.ObjectModel;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
@@ -11,7 +12,7 @@ namespace MayShow.Models;
|
|||||||
|
|
||||||
class PDFReport : PDFReportInfo
|
class PDFReport : PDFReportInfo
|
||||||
{
|
{
|
||||||
private List<ReportFile> _files;
|
private ObservableCollection<ReportFile> _files;
|
||||||
private DateTime? _lastGenerated;
|
private DateTime? _lastGenerated;
|
||||||
|
|
||||||
public PDFReport() : base()
|
public PDFReport() : base()
|
||||||
@@ -30,7 +31,7 @@ class PDFReport : PDFReportInfo
|
|||||||
LastSaved = info.LastSaved;
|
LastSaved = info.LastSaved;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<ReportFile> Files
|
public ObservableCollection<ReportFile> Files
|
||||||
{
|
{
|
||||||
get => _files;
|
get => _files;
|
||||||
set { _files = value; NotifyPropertyChanged(); }
|
set { _files = value; NotifyPropertyChanged(); }
|
||||||
|
|||||||
Reference in New Issue
Block a user