Files
speckle-sharp-connectors/DUI3/Speckle.Connectors.DUI/Models/Card/SenderModelCard.cs
T
Adam Hathcock 891a18819b React to sdk renaming (#113)
* 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
2024-08-08 10:32:01 +00:00

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);
}