Files
ROLAC/API/ROLAC.API/DTOs/Push/PushSubscriptionDtos.cs
T
Chris Chen b9210f2501
ci-cd-vm / ci-cd (push) Failing after 1m34s
support PWA notification.
2026-06-29 22:20:15 -07:00

10 lines
483 B
C#

namespace ROLAC.API.DTOs.Push;
/// <summary>The PushSubscription a browser produces, posted when a member enables notifications.</summary>
public sealed record PushSubscriptionRequest(string Endpoint, PushSubscriptionKeys Keys, string? UserAgent);
public sealed record PushSubscriptionKeys(string P256dh, string Auth);
/// <summary>Identifies the subscription to remove when a member disables notifications.</summary>
public sealed record PushUnsubscribeRequest(string Endpoint);