9 lines
216 B
C#
9 lines
216 B
C#
namespace eSuite.WorkBench.Services;
|
|
|
|
public class BuildResult
|
|
{
|
|
public string State { get; set; }
|
|
public string Result { get; set; }
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
} |