Moved PathFragments from SetupTmplCode to extra class.

This commit is contained in:
2018-03-22 07:58:39 +01:00
parent b2ef60a595
commit 016e11e81f
7 changed files with 36 additions and 48 deletions

View File

@ -2,13 +2,13 @@
{
public class PhysicalFile
{
public PhysicalFile(string sourcePath, string targetPath)
public PhysicalFile(string source, string target)
{
SourcePath = sourcePath;
TargetPath = targetPath;
Source = source;
Target = target;
}
public string SourcePath { get; }
public string TargetPath { get; }
public string Source { get; }
public string Target { get; }
}
}