b6be7a351f
* First pass * First pass adding service registraiton * Finished up service registration * Json exception * Moved to the right place * Fixed tests * Added some missing docs strings * Reflecting Gergo's specklepy changes * Correct the DI registration * Readme * No warn beta packages * Format * renamed misleading variable * Fixed lock files * Disable SQLite for automate
8 lines
204 B
C#
8 lines
204 B
C#
namespace Speckle.Automate.Sdk.Schema;
|
|
|
|
public readonly struct ObjectResultValues
|
|
{
|
|
public required List<ResultCase> ObjectResults { get; init; }
|
|
public required List<string> BlobIds { get; init; }
|
|
}
|