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; } }