Save Shortcuts Rev B
This commit is contained in:
@ -5,6 +5,9 @@ namespace View_by_Distance.Date.Group.Models.Binder;
|
||||
|
||||
public class Configuration
|
||||
{
|
||||
|
||||
#nullable disable
|
||||
|
||||
[Display(Name = "By Create Date Shortcut"), Required] public bool? ByCreateDateShortcut { get; set; }
|
||||
[Display(Name = "By Date"), Required] public bool? ByDay { get; set; }
|
||||
[Display(Name = "By Hash"), Required] public bool? ByHash { get; set; }
|
||||
@ -13,15 +16,7 @@ public class Configuration
|
||||
[Display(Name = "Ignore Subdirectories for Rename"), Required] public bool? KeepFullPath { get; set; }
|
||||
[Display(Name = "Property Configuration"), Required] public Property.Models.Configuration PropertyConfiguration { get; set; }
|
||||
|
||||
public Configuration()
|
||||
{
|
||||
ByDay = null;
|
||||
ByCreateDateShortcut = null;
|
||||
ByHash = null;
|
||||
BySeason = null;
|
||||
ByWeek = null;
|
||||
KeepFullPath = null;
|
||||
}
|
||||
#nullable restore
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
|
Reference in New Issue
Block a user