Skip to content

Commit

Permalink
starting work on #18
Browse files Browse the repository at this point in the history
  • Loading branch information
tiernano committed Jul 25, 2018
1 parent a315188 commit 41b05e8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions BlackVueDownloader.PCL/DownloadOptions.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
using CommandLine;
using System;
using System.Collections.Generic;
using System.Text;

namespace BlackVueDownloader.PCL
{
public class DownloadOptions
{
[Option('i', "ip", Required = true, HelpText = "IP Address of BlackVue camera")]
public string IPAddr { get; set; }

[Option('d', "directory", Required = true, HelpText = "The Local directory you want files written to")]
public string OutputDirectory { get; set; }

[Option('l', "last", Required = false, HelpText = "Download Last X days of files")]
public int? LastDays { get; set; }
}
}

0 comments on commit 41b05e8

Please sign in to comment.