a1c0fbec3e
* alphabetize deps * rerun locks * use new nuget * dump usage of one not null * dump another usage of not null
17 lines
525 B
C#
17 lines
525 B
C#
using Speckle.Connectors.DUI.Models.Card.SendFilter;
|
|
using Speckle.Connectors.Utils.Operations;
|
|
using Speckle.Core.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);
|
|
}
|