Gestita pagina notifiche
This commit is contained in:
15
salesbook.Shared/Core/Entity/WtbDeviceNotification.cs
Normal file
15
salesbook.Shared/Core/Entity/WtbDeviceNotification.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace salesbook.Shared.Core.Entity;
|
||||
|
||||
public class WtbDeviceNotification
|
||||
{
|
||||
[JsonPropertyName("userDeviceId")]
|
||||
public long? UserDeviceId { get; set; }
|
||||
|
||||
[JsonPropertyName("notificationId")]
|
||||
public long? NotificationId { get; set; }
|
||||
|
||||
[JsonPropertyName("readDate")]
|
||||
public DateTime? ReadDate { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user