Files
speckle-sharp-connectors/DUI3/Speckle.Connectors.DUI/Models/Card/ModelCardProgress.cs
T
2024-07-04 11:56:34 +01:00

8 lines
279 B
C#

namespace Speckle.Connectors.DUI.Models.Card;
/// <summary>
/// Progress value between 0 and 1 to calculate UI progress bar width.
/// If it is null it will swooshing on UI.
/// </summary>
public record ModelCardProgress(string ModelCardId, string Status, double? Progress);