Struct NotificationModel
public record struct NotificationModel : IEquatable<NotificationModel>
- Implements
- Inherited Members
Constructors
NotificationModel(int, MessageLevel, string, string?, Action)
public NotificationModel(int ID, MessageLevel Level, string Message, string? Details, Action Hide)
Parameters
IDintLevelMessageLevelMessagestringDetailsstringHideAction
Properties
Details
public string? Details { readonly get; set; }
Property Value
Hide
public Action Hide { readonly get; set; }
Property Value
ID
public int ID { readonly get; set; }
Property Value
Level
public MessageLevel Level { readonly get; set; }
Property Value
Message
public string Message { readonly get; set; }