Clipboard

This commit is contained in:
2022-05-07 18:58:12 +02:00
parent 60ab58659e
commit b161ded92e
16 changed files with 214 additions and 33 deletions

View File

@@ -0,0 +1,7 @@
namespace FileTime.Core.Command
{
public interface ICommand
{
}
}

View File

@@ -0,0 +1,7 @@
namespace FileTime.Core.Command
{
public interface ITransportationCommand : ICommand
{
}
}

View File

@@ -0,0 +1,7 @@
namespace FileTime.Core.Command.Copy
{
public class CopyCommand : ITransportationCommand
{
}
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\FileTime.Core.Abstraction\FileTime.Core.Abstraction.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,9 @@
namespace FileTime.Core.Command
{
public enum TransportMode
{
Merge,
Overwrite,
Skip
}
}