Gestita pagina notifiche
This commit is contained in:
15
salesbook.Shared/Core/Dto/ReadNotificationRequestDTO.cs
Normal file
15
salesbook.Shared/Core/Dto/ReadNotificationRequestDTO.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user