Katteker/Creator/PhysicalFile.cs

14 lines
287 B
C#

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