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