net6.0 Ready to test
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
namespace APCViewer.Models.Properties;
|
||||
|
||||
public interface IBackgroundController
|
||||
public interface IBackgroundPage
|
||||
{
|
||||
|
||||
public List<Exception> Exceptions { get; }
|
||||
|
11
APC Viewer/Models/Properties/IIPDSFPage.cs
Normal file
11
APC Viewer/Models/Properties/IIPDSFPage.cs
Normal 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; }
|
||||
|
||||
}
|
11
APC Viewer/Models/Properties/IPDSFPage.cs
Normal file
11
APC Viewer/Models/Properties/IPDSFPage.cs
Normal 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; }
|
||||
|
||||
}
|
9
APC Viewer/Models/Properties/ITimePivotPage.cs
Normal file
9
APC Viewer/Models/Properties/ITimePivotPage.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace APCViewer.Models.Properties;
|
||||
|
||||
public interface ITimePivotPage
|
||||
{
|
||||
|
||||
List<string[]> ForIPDSF { get; }
|
||||
List<string[]> ForPDSF { get; }
|
||||
|
||||
}
|
Reference in New Issue
Block a user