support PWA notification.
ci-cd-vm / ci-cd (push) Failing after 1m34s

This commit is contained in:
Chris Chen
2026-06-29 22:20:15 -07:00
parent 45d910b554
commit b9210f2501
32 changed files with 1054 additions and 12 deletions
@@ -18,3 +18,11 @@ public sealed class LineOptions
public string ChannelAccessToken { get; set; } = "";
public string ChannelSecret { get; set; } = "";
}
/// <summary>VAPID settings for Web Push. Sourced from the NotificationSetting row at runtime.</summary>
public sealed class WebPushOptions
{
public string PublicKey { get; set; } = "";
public string PrivateKey { get; set; } = "";
public string Subject { get; set; } = "";
}