Initial commit

This commit is contained in:
Holger Boerchers
2018-03-21 20:07:40 +01:00
commit d383f0ef1c
77 changed files with 7050 additions and 0 deletions

14
Creator/PhysicalFile.cs Normal file
View File

@ -0,0 +1,14 @@
namespace KattekerCreator
{
public class PhysicalFile
{
public PhysicalFile(string sourcePath, string targetPath)
{
SourcePath = sourcePath;
TargetPath = targetPath;
}
public string SourcePath { get; }
public string TargetPath { get; }
}
}