d6f6254a92
.NET Build and Publish / build (push) Has been cancelled
* add file import resource * disabled health check * re-enable healthcheck * git ignore volumes * disabled importer * start_period * Skipped broken tests * Verify tests * Fixed tests * reverted volumes path * Update docker-compose.yml
14 lines
421 B
C#
14 lines
421 B
C#
namespace Speckle.Sdk.Api.GraphQL.Models;
|
|
|
|
public sealed class FileImport
|
|
{
|
|
public string id { get; init; }
|
|
public string projectId { get; init; }
|
|
public string? convertedVersionId { get; init; }
|
|
public string userId { get; init; }
|
|
public int convertedStatus { get; init; }
|
|
public string? convertedMessage { get; init; }
|
|
public string? modelId { get; init; }
|
|
public DateTime updatedAt { get; init; }
|
|
}
|