1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/BillingService/ArgumentOptions.cs
2021-08-11 18:44:15 -07:00

21 lines
664 B
C#

using CommandLine;
using System;
using System.Collections.Generic;
using System.Text;
namespace Teknik.BillingService
{
public class ArgumentOptions
{
[Option('s', "sync", Default = false, Required = false, HelpText = "Syncs the current subscriptions with the invoice system")]
public bool SyncSubscriptions { get; set; }
[Option('c', "config", Required = false, HelpText = "The path to the teknik config file")]
public string Config { get; set; }
// Omitting long name, default --verbose
[Option(HelpText = "Prints all messages to standard output.")]
public bool Verbose { get; set; }
}
}