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

11 lines
288 B
C#

namespace Speckle.Connectors.DUI.Models.Card;
public class ModelCardNotification
{
public string? ModelCardId { get; set; }
public string? Text { get; set; }
public string? Level { get; set; }
public int Timeout { get; set; }
public bool Dismissible { get; set; } = true;
}