9 lines
205 B
C#
9 lines
205 B
C#
using System.Collections.Generic;
|
|
|
|
namespace eSuite.WorkBench.Services;
|
|
|
|
public class BuildPipelineResponse
|
|
{
|
|
public int Count { get; set; }
|
|
public IEnumerable<BuildResult> Value { get; set; }
|
|
} |