Defining Output Data Schema
Describes how users define the output data schema
Last updated
Describes how users define the output data schema
Last updated
using Nodez.Data.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Nodez.Project.Template.MyOutputs
{
public class SampleOutputData : IOutputRow
{
// Define columns here (NOTICE: The column name defined here and the column name defined in the data file must match.)
public string COL_1 { get; set; }
public string COL_2 { get; set; }
}
}