27 lines
595 B
C#
27 lines
595 B
C#
using CliFx;
|
|
using CliFx.Attributes;
|
|
using CliFx.Infrastructure;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Chenfeng.MES.Archiver.Commands
|
|
{
|
|
[Command("import")]
|
|
public class ImportSqlCommand : ICommand
|
|
{
|
|
[CommandParameter(0, Description = "路径")]
|
|
public string Source { get; set; } = "";
|
|
|
|
public string Connection { get; set; } = "";
|
|
|
|
|
|
public ValueTask ExecuteAsync(IConsole console)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|