Files
2026-03-22 00:29:34 +01:00

17 lines
400 B
C#

using Microsoft.AspNetCore.Components;
namespace Webshop.App.Components.Widgets
{
public partial class InboxWidget
{
[Inject]
public ApplicationState? ApplicationState { get; set; }
public int MessageCount { get; set; } = 0;
protected override void OnInitialized()
{
MessageCount = ApplicationState.NumberOfMessages;
}
}
}