Files
TaskHybrid/salesbook.Shared/Core/Dto/PageState/NotificationState.cs
2025-09-09 16:30:51 +02:00

8 lines
209 B
C#

using salesbook.Shared.Core.Dto.Notification;
namespace salesbook.Shared.Core.Dto.PageState;
public class NotificationState
{
public List<PushNotificationDTO> UnreadNotifications { get; set; } = [];
}