Mass push
This commit is contained in:
@ -1,29 +1,29 @@
|
||||
namespace View_by_Distance.PropertyCompare.Models;
|
||||
// namespace View_by_Distance.PropertyCompare.Models;
|
||||
|
||||
internal class PropertyCompareItem
|
||||
{
|
||||
// internal class PropertyCompareItem
|
||||
// {
|
||||
|
||||
protected readonly string _ImageFileName;
|
||||
protected readonly bool _IsArg;
|
||||
protected readonly string _JsonFileNameWithoutExtension;
|
||||
protected readonly long[] _Numbers;
|
||||
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 Shared.Models.Property Property => _Property;
|
||||
public string[] Strings => _Strings;
|
||||
// protected readonly string _ImageFileName;
|
||||
// protected readonly bool _IsArg;
|
||||
// protected readonly string _JsonFileNameWithoutExtension;
|
||||
// protected readonly long[] _Numbers;
|
||||
// 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 Shared.Models.Property Property => _Property;
|
||||
// public string[] Strings => _Strings;
|
||||
|
||||
public PropertyCompareItem(string imageFileName, bool isArg, string jsonFileNameWithoutExtension, long[] numbers, Shared.Models.Property property, string[] strings)
|
||||
{
|
||||
_ImageFileName = imageFileName;
|
||||
_IsArg = isArg;
|
||||
_JsonFileNameWithoutExtension = jsonFileNameWithoutExtension;
|
||||
_Numbers = numbers;
|
||||
_Property = property;
|
||||
_Strings = strings;
|
||||
}
|
||||
// public PropertyCompareItem(string imageFileName, bool isArg, string jsonFileNameWithoutExtension, long[] numbers, Shared.Models.Property property, string[] strings)
|
||||
// {
|
||||
// _ImageFileName = imageFileName;
|
||||
// _IsArg = isArg;
|
||||
// _JsonFileNameWithoutExtension = jsonFileNameWithoutExtension;
|
||||
// _Numbers = numbers;
|
||||
// _Property = property;
|
||||
// _Strings = strings;
|
||||
// }
|
||||
|
||||
}
|
||||
// }
|
File diff suppressed because it is too large
Load Diff
@ -37,7 +37,7 @@
|
||||
<PackageReference Include="ShellProgressBar" Version="5.2.0" />
|
||||
<PackageReference Include="Serilog" Version="2.12.0" />
|
||||
<PackageReference Include="System.Drawing.Common" Version="7.0.0" />
|
||||
<PackageReference Include="System.Text.Json" Version="7.0.0" />
|
||||
<PackageReference Include="System.Text.Json" Version="7.0.1" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Shared\View-by-Distance.Shared.csproj" />
|
||||
|
Reference in New Issue
Block a user