net6.0 Ready to test

This commit is contained in:
2022-03-29 07:23:13 -07:00
parent 836f70ed7f
commit 289547180a
135 changed files with 3189 additions and 7648 deletions

View File

@ -1,6 +1,6 @@
namespace APCViewer.Models.Properties;
public interface IBackgroundController
public interface IBackgroundPage
{
public List<Exception> Exceptions { get; }

View File

@ -0,0 +1,11 @@
namespace APCViewer.Models.Properties;
public interface IIPDSFPage
{
string? Directory { get; }
int Files { get; }
Dictionary<string, Dictionary<string, List<Shared.Logistics>>> Grouped { get; }
List<Tuple<string[], Shared.Logistics>> Sorted { get; }
}

View File

@ -0,0 +1,11 @@
namespace APCViewer.Models.Properties;
public interface IPDSFPage
{
string? Directory { get; }
int Files { get; }
Dictionary<string, Dictionary<string, List<Shared.Logistics>>> Grouped { get; }
List<Tuple<string[], Shared.Logistics>> Sorted { get; }
}

View File

@ -0,0 +1,9 @@
namespace APCViewer.Models.Properties;
public interface ITimePivotPage
{
List<string[]> ForIPDSF { get; }
List<string[]> ForPDSF { get; }
}