update database, added unneccery switches

This commit is contained in:
2023-05-14 22:52:02 +03:00
parent 41781f5a13
commit 8c3e643a92
8 changed files with 76 additions and 10 deletions

18
Runas/cli.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommandLine;
namespace Runas
{
internal class CLI
{
[Option('f',"file", Required=false, HelpText="add full name of the file")]
public string FileName { get; set; }
[Option('a', "argm", Required = false, HelpText ="argument for the file")]
public string Arguments { get; set; }
[Option("runas", Default =false,Required =false)]
public bool runas { get; set; }
}
}