Gestita pagina notifiche

This commit is contained in:
2025-09-11 16:06:19 +02:00
parent 7319378e75
commit 7bfe67a97c
30 changed files with 611 additions and 105 deletions

View File

@@ -0,0 +1,15 @@
using System.Text.Json.Serialization;
namespace salesbook.Shared.Core.Dto;
public class ReadNotificationRequestDTO
{
[JsonPropertyName("deviceToken")]
public string DeviceToken { get; set; }
[JsonPropertyName("username")]
public string Username { get; set; }
[JsonPropertyName("notificationId")]
public long NotificationId { get; set; }
}