Save Shortcuts Rev B
This commit is contained in:
@ -5,6 +5,8 @@ namespace View_by_Distance.Compare.Models.Binder;
|
||||
|
||||
public class Configuration
|
||||
{
|
||||
|
||||
#nullable disable
|
||||
[Display(Name = "Diff Property Directory"), Required] public string DiffPropertyDirectory { get; set; }
|
||||
[Display(Name = "Property Configuration"), Required] public Property.Models.Configuration PropertyConfiguration { get; set; }
|
||||
[Display(Name = "Rename"), Required] public string[] Rename { get; set; }
|
||||
@ -12,14 +14,7 @@ public class Configuration
|
||||
[Display(Name = "Rename C"), Required] public string[] RenameC { get; set; }
|
||||
[Display(Name = "Spelling"), Required] public string[] Spelling { get; set; }
|
||||
|
||||
public Configuration()
|
||||
{
|
||||
DiffPropertyDirectory = string.Empty;
|
||||
Rename = Array.Empty<string>();
|
||||
RenameB = Array.Empty<string>();
|
||||
RenameC = Array.Empty<string>();
|
||||
Spelling = Array.Empty<string>();
|
||||
}
|
||||
#nullable restore
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
|
Reference in New Issue
Block a user