14 lines
319 B
C#
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; }
|
|
}
|
|
} |