namespace KattekerCreator { public class PhysicalFile { public PhysicalFile(string sourcePath, string targetPath) { SourcePath = sourcePath; TargetPath = targetPath; } public string SourcePath { get; } public string TargetPath { get; } } }