BadScript 2
Loading...
Searching...
No Matches
Options_With_FileDirectoryInfo.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
3using System.IO;
4
6{
8 {
9 [Option('s', "stringPath")]
10 public string StringPath { get; set; }
11
12 [Option('f', "filePath")]
13 public FileInfo FilePath { get; set; }
14
15 [Option('d', "directoryPath")]
16 public DirectoryInfo DirectoryPath { get; set; }
17 }
18}