Table of Contents

Struct NotificationModel

Namespace
The.Web.Pages
Assembly
Instagile.Web.Client.dll
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

ID int
Level MessageLevel
Message string
Details string
Hide Action

Properties

Details

public string? Details { readonly get; set; }

Property Value

string

Hide

public Action Hide { readonly get; set; }

Property Value

Action

ID

public int ID { readonly get; set; }

Property Value

int

Level

public MessageLevel Level { readonly get; set; }

Property Value

MessageLevel

Message

public string Message { readonly get; set; }

Property Value

string