11 lines
288 B
C#
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;
|
|
}
|