13 lines
259 B
C#
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;
|
|
}
|
|
} |