- update multiple LIAM projects and solution/config files - add LiamWorkflowDiagnostics app sources and generated outputs - include current workspace state (dependencies and build outputs)
21 lines
429 B
C#
21 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace C4IT_IAM_Engine
|
|
{
|
|
public class ResultToken
|
|
{
|
|
public string resultMessage;
|
|
public int resultErrorId;
|
|
public string resultFunction;
|
|
public ResultToken(string function)
|
|
{
|
|
this.resultFunction = function;
|
|
}
|
|
|
|
}
|
|
}
|