13 lines
344 B
C#
13 lines
344 B
C#
using CommandLine;
|
|
|
|
namespace PhotoFileOrganizer;
|
|
|
|
internal class FileOrganizerOptions
|
|
{
|
|
[Option('i', "input", Required = true, HelpText = "input directory path.")]
|
|
public string? InputPath { get; set; }
|
|
|
|
[Option('o', "output", Required = true, HelpText = "output directory path.")]
|
|
public string? OutputPath { get; set; }
|
|
}
|