mirror of
https://github.com/nsnail/dot.git
synced 2025-06-20 06:18:15 +08:00
<refactor>
This commit is contained in:
11
src/DirOption.cs
Normal file
11
src/DirOption.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Dot;
|
||||
|
||||
public class DirOption : IOption
|
||||
{
|
||||
[Option('f', "filter", Required = false, HelpText = nameof(Strings.FileSearchPattern), Default = "*.*"
|
||||
, ResourceType = typeof(Strings))]
|
||||
public string Filter { get; set; }
|
||||
|
||||
[Value(0, HelpText = nameof(Strings.FolderPath), Default = ".", ResourceType = typeof(Strings))]
|
||||
public string Path { get; set; }
|
||||
}
|
Reference in New Issue
Block a user