14 lines
290 B
C#
14 lines
290 B
C#
namespace KattekerCreator
|
|
{
|
|
public struct PhysicalFile
|
|
{
|
|
public PhysicalFile(string source, string target)
|
|
{
|
|
Source = source;
|
|
Target = target;
|
|
}
|
|
|
|
public readonly string Source;
|
|
public readonly string Target;
|
|
}
|
|
} |