Creata card notifiche

This commit is contained in:
2025-09-09 16:30:51 +02:00
parent dfb86e3cd7
commit 7319378e75
13 changed files with 289 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
namespace salesbook.Shared.Core.Dto.Notification;
public class PushNotificationDTO
{
public string? Title { get; set; }
public string? Message { get; set; }
public DateTime Hours => DateTime.Now;
}