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>
16 lines
594 B
C#
16 lines
594 B
C#
namespace Speckle.Connectors.DUI.Models.Card;
|
|
|
|
public class ReceiverModelCard : ModelCard
|
|
{
|
|
public string? ProjectName { get; set; }
|
|
public string? ModelName { get; set; }
|
|
public string? SelectedVersionId { get; set; }
|
|
public string? SelectedVersionSourceApp { get; set; }
|
|
public string? SelectedVersionUserId { get; set; }
|
|
public string? LatestVersionId { get; set; }
|
|
public string? LatestVersionSourceApp { get; set; }
|
|
public string? LatestVersionUserId { get; set; }
|
|
public bool HasDismissedUpdateWarning { get; set; }
|
|
public List<string>? BakedObjectIds { get; set; }
|
|
}
|