namespace KattekerCreator { public struct PhysicalFile { public PhysicalFile(string source, string target) { Source = source; Target = target; } public readonly string Source, Target; } }