This commit is contained in:
2022-08-22 09:10:19 -07:00
parent f72fcee1db
commit bc2174b17a
150 changed files with 4323 additions and 6259 deletions

View File

@ -1,5 +1,3 @@
using View_by_Distance.Property.Models;
namespace View_by_Distance.PropertyCompare.Models;
internal class PropertyCompareItem
@ -9,16 +7,16 @@ internal class PropertyCompareItem
protected readonly bool _IsArg;
protected readonly string _JsonFileNameWithoutExtension;
protected readonly long[] _Numbers;
protected readonly A_Property _Property;
protected readonly Shared.Models.Property _Property;
protected readonly string[] _Strings;
public string ImageFileName => _ImageFileName;
public bool IsArg => _IsArg;
public string JsonFileNameWithoutExtension => _JsonFileNameWithoutExtension;
public long[] Numbers => _Numbers;
public A_Property Property => _Property;
public Shared.Models.Property Property => _Property;
public string[] Strings => _Strings;
public PropertyCompareItem(string imageFileName, bool isArg, string jsonFileNameWithoutExtension, long[] numbers, A_Property property, string[] strings)
public PropertyCompareItem(string imageFileName, bool isArg, string jsonFileNameWithoutExtension, long[] numbers, Shared.Models.Property property, string[] strings)
{
_ImageFileName = imageFileName;
_IsArg = isArg;