eb8db87d9f
* adds url by token component * Add gubbins for passing Account objects and AccountResource objects to include token usage * format * add bits to make things work? * revert usage of SpeckleApplication * review fixes * more reverts * Fix tests * token is correct now * fix build * fixes url resource exception and adds new icon * Made model cards dumb and moved conversions * can build NW * actually, remove dead code --------- Co-authored-by: Claire Kuang <kuang.claire@gmail.com>
14 lines
268 B
C#
14 lines
268 B
C#
using Speckle.Sdk.Credentials;
|
|
|
|
namespace Speckle.Connectors.Common.Operations;
|
|
|
|
public record ReceiveInfo(
|
|
Account Account,
|
|
string ProjectId,
|
|
string ProjectName,
|
|
string ModelId,
|
|
string ModelName,
|
|
string SelectedVersionId,
|
|
string SourceApplication
|
|
);
|