mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Migrate to Nuget package for models
This commit is contained in:
@@ -1783,7 +1783,7 @@ Some special strings that can be used:
|
||||
/// <summary>
|
||||
/// Preconfigured Filter
|
||||
/// </summary>
|
||||
protected Filter Filter { get; set; }
|
||||
protected Filtering.Filter Filter { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Pre-configured DatHeader
|
||||
@@ -2224,9 +2224,9 @@ Some special strings that can be used:
|
||||
/// <summary>
|
||||
/// Get Filter from feature list
|
||||
/// </summary>
|
||||
private static Filter GetFilter(Dictionary<string, Feature> features)
|
||||
private static Filtering.Filter GetFilter(Dictionary<string, Feature> features)
|
||||
{
|
||||
Filter filter = new()
|
||||
Filtering.Filter filter = new()
|
||||
{
|
||||
DatItemFilter = new DatItemFilter(),
|
||||
MachineFilter = new MachineFilter(),
|
||||
|
||||
@@ -430,7 +430,7 @@ Reset the internal state: reset();";
|
||||
filterPerMachine = Arguments[3].AsYesNo();
|
||||
|
||||
// Create filter to run filters from
|
||||
Filter filter = new()
|
||||
Filtering.Filter filter = new()
|
||||
{
|
||||
MachineFilter = new MachineFilter { HasFilters = true },
|
||||
DatItemFilter = new DatItemFilter { HasFilters = true },
|
||||
|
||||
Reference in New Issue
Block a user