Initial commit
This commit is contained in:
14
Creator/PhysicalFile.cs
Normal file
14
Creator/PhysicalFile.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user