15 lines
369 B
C#
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; }
|
|
} |