Creating the Core Classes
Configuration
using InsightMaker.Core.Types.Config;
namespace InsightMaker.Enrichment.HelloWorldES
{
public class HelloWorldESConfiguration : EnrichmentStepConfiguration
{
public HelloWorldESConfiguration()
{
base.Type = "HelloWorldES";
}
public HelloWorldESSpecificConfiguration HelloWorldES { get; set; }
= new HelloWorldESSpecificConfiguration();
}
public class HelloWorldESSpecificConfiguration
{
public string Text { get; set; } = "";
}
}Enrichment Step
Enrichment Step Factory
Creating the Test Console App

Last updated