Katteker/Creator/PhysicalFile.cs
2018-12-14 20:41:23 +01:00

13 lines
259 B
C#

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