18 lines
361 B
C#
18 lines
361 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BlazingPizza
|
|
{
|
|
public class NotificationSubscription
|
|
{
|
|
public int NotificationSubscriptionId { get; set; }
|
|
|
|
public string UserId { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public string P256dh { get; set; }
|
|
|
|
public string Auth { get; set; }
|
|
}
|
|
}
|