22 lines
577 B
C#
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; }
|
|
}
|
|
|
|
}
|