8 lines
209 B
C#
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; } = [];
|
|
} |