9a74195b24
.NET Build and Publish / build (push) Has been cancelled
* Add version id to ingestion query * and the sub * Add project & user ids * test
11 lines
302 B
C#
11 lines
302 B
C#
using Speckle.Sdk.Api.GraphQL.Enums;
|
|
|
|
namespace Speckle.Sdk.Api.GraphQL.Models;
|
|
|
|
public sealed class ModelIngestionStatusData
|
|
{
|
|
public required ModelIngestionStatus status { get; init; }
|
|
public required string? progressMessage { get; init; }
|
|
public required string? versionId { get; init; }
|
|
}
|