This repository has been archived on 2021-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
blazing-workshop/BlazingPizza.Shared/NotificationSubscription.cs

18 lines
361 B
C#
Raw Normal View History

2020-12-17 15:52:43 +00:00
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; }
}
}