Files
speckle-sharp-connectors/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCard.cs
T
2025-04-11 11:44:43 +00:00

46 lines
1.1 KiB
C#

using Speckle.Connectors.DUI.Settings;
using Speckle.Connectors.DUI.Utils;
namespace Speckle.Connectors.DUI.Models.Card;
public class ModelCard : DiscriminatedObject
{
/// <summary>
/// This is a unique id generated by the ui to make model cards easier to reference around.
/// It's not the actual model (branch) id.
/// </summary>
public string? ModelCardId { get; set; }
/// <summary>
/// Model id. FKA branch id.
/// </summary>
public string? ModelId { get; set; }
/// <summary>
/// Project id. FKA stream id.
/// </summary>
public string? ProjectId { get; set; }
/// <summary>
/// Workspace id.
/// </summary>
public string? WorkspaceId { get; set; }
/// <summary>
/// Workspace slug.
/// </summary>
public string? WorkspaceSlug { get; set; }
/// <summary>
/// Account id that model card created with it initially.
/// </summary>
public string? AccountId { get; set; }
/// <summary>
/// Server that model card created on it initially.
/// </summary>
public string? ServerUrl { get; set; }
public List<CardSetting>? Settings { get; set; }
}