diff --git a/NEW/src/JdeScoping.Api/Controllers/FileController.cs b/NEW/src/JdeScoping.Api/Controllers/FileIOController.cs
similarity index 100%
rename from NEW/src/JdeScoping.Api/Controllers/FileController.cs
rename to NEW/src/JdeScoping.Api/Controllers/FileIOController.cs
diff --git a/NEW/src/JdeScoping.ExcelIO/Mapping/ColumnDefinition.cs b/NEW/src/JdeScoping.ExcelIO/Mapping/ColumnDefinition.cs
new file mode 100644
index 0000000..fade702
--- /dev/null
+++ b/NEW/src/JdeScoping.ExcelIO/Mapping/ColumnDefinition.cs
@@ -0,0 +1,34 @@
+namespace JdeScoping.ExcelIO.Mapping;
+
+///
+/// Defines how a property maps to an Excel column.
+///
+public sealed class ColumnDefinition
+{
+ /// Property name for debugging/error messages.
+ public required string PropertyName { get; init; }
+
+ /// Compiled delegate to get property value from object.
+ public required Func