Class ModelGeneratorOutput
Holds the output of a model code generation.
Namespace: Neon.ModelGen
Assembly: Neon.ModelGen.dll
Syntax
public class ModelGeneratorOutput
Constructors
ModelGeneratorOutput()
Constructor.
Declaration
public ModelGeneratorOutput()
Properties
Errors
Returns the list of code generator errors (if any).
Declaration
public List<string> Errors { get; }
Property Value
Type | Description |
---|---|
List<string> |
HasErrors
Indicates whether the coder generator reported any errors.
Declaration
public bool HasErrors { get; }
Property Value
Type | Description |
---|---|
bool |
SourceCode
Returns the generated source code.
Declaration
public string SourceCode { get; }
Property Value
Type | Description |
---|---|
string |