Files
Aberwyn/Aberwyn/Models/PushSubscriber.cs
Elias Jansson e0fbca6563 Notifications
2026-01-24 16:52:54 +01:00

22 lines
577 B
C#

namespace Aberwyn.Models
{
public class PushSubscriber
{
public int Id { get; set; }
public string Endpoint { get; set; }
public string P256DH { get; set; }
public string Auth { get; set; }
public string UserId { get; set; }
public virtual ApplicationUser User { get; set; }
public int? PizzaOrderId { get; set; }
public virtual PizzaOrder PizzaOrder { get; set; }
}
public class PushMessageDto
{
public string Title { get; set; }
public string Body { get; set; }
}
}