This commit is contained in:
2022-05-08 12:28:50 -07:00
commit 4a3e24236f
313 changed files with 22395 additions and 0 deletions
.editorconfig.gitattributes.gitignore.txt
.vscode
Compare
Date-Group
Instance
Metadata
Not-Copy-Copy
PrepareForOld
Property-Compare
Property
Resize
Shared
.vscode
Models
%ClassName%.cs .aiConsole.csDirectoryFileSystem.csFace.csFaceEncoding.csFaceFileSystem.csFacePoint.csFileSystem.csLocation.csMetadataFile.csMetadataFileCollection.csMetadataFileId.cs
Methods
Navigate.csOutputResolution.csPerson.csPersonAddress.csPersonAddressCity.csPersonAddressState.csPersonAddressStreet.csPersonAddressZipCode.csPersonBirthday.csPersonComment.csPersonEmail.csPersonId.csPersonImport.csPersonName.csPersonNameAlias.csPersonNameFirst.csPersonNameLast.csPersonNameMiddle.csPersonNumber.csPersonURL.cs
Properties
Property.csRelativePaths.cs
Stateless
Storage.cs
Phares
Sample-Data
View-by-Distance.Shared.csproj
View-by-Distance-MKLink-Console.slnpackage.json

@ -0,0 +1,27 @@
using System.ComponentModel.DataAnnotations;
using System.Text.Json;
namespace View_by_Distance.Not.Copy.Copy.Models.Binder;
public class Configuration
{
[Display(Name = "Compare Source"), Required] public string CompareSource { get; set; }
[Display(Name = "Empty Destination"), Required] public string EmptyDestination { get; set; }
[Display(Name = "Property Configuration"), Required] public Property.Models.Configuration? PropertyConfiguration { get; set; }
[Display(Name = "Selected Source"), Required] public string SelectedSource { get; set; }
public Configuration()
{
CompareSource = string.Empty;
EmptyDestination = string.Empty;
SelectedSource = string.Empty;
}
public override string ToString()
{
string result = JsonSerializer.Serialize(this, new JsonSerializerOptions() { WriteIndented = true });
return result;
}
}