68a407905d
* Add workspaces queries * Format * extra tweaks * init speckle verify * Add workspace creation state * Add workspace creation test * test exceptional cases * GetActiveWorkspace tests * fixed test
15 lines
491 B
C#
15 lines
491 B
C#
namespace Speckle.Sdk.Api.GraphQL.Models;
|
|
|
|
public sealed class Version
|
|
{
|
|
public LimitedUser? authorUser { get; init; }
|
|
public DateTime createdAt { get; init; }
|
|
public string id { get; init; }
|
|
public string? message { get; init; }
|
|
public Uri previewUrl { get; init; }
|
|
|
|
/// <remarks>May be <see langword="null"/> if workspaces version history limit has been exceeded</remarks>
|
|
public string? referencedObject { get; init; }
|
|
public string? sourceApplication { get; init; }
|
|
}
|