Katteker/Creator/PhysicalFile.cs
Holger Boerchers d383f0ef1c Initial commit
2018-03-21 20:07:40 +01:00

14 lines
319 B
C#

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