891a18819b
* react to renamespacing * merge dev * fmt * initialize things with typeloader * autocad initialization * add arcgis * add more projects to local * instrument rhino more * update nugets * fmt
17 lines
524 B
C#
17 lines
524 B
C#
using Speckle.Connectors.DUI.Models.Card.SendFilter;
|
|
using Speckle.Connectors.Utils.Operations;
|
|
using Speckle.Sdk.Common;
|
|
|
|
namespace Speckle.Connectors.DUI.Models.Card;
|
|
|
|
public class SenderModelCard : ModelCard
|
|
{
|
|
public ISendFilter? SendFilter { get; set; }
|
|
|
|
// [JsonIgnore]
|
|
// public HashSet<string> ChangedObjectIds { get; set; } = new();
|
|
|
|
public SendInfo GetSendInfo(string hostApplication) =>
|
|
new(AccountId.NotNull(), new Uri(ServerUrl.NotNull()), ProjectId.NotNull(), ModelId.NotNull(), hostApplication);
|
|
}
|