Files
TaskHybrid/salesbook.Shared/Core/Dto/ReadNotificationRequestDTO.cs
2025-09-11 16:06:19 +02:00

15 lines
369 B
C#

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; }
}