Push notifications

This commit is contained in:
2023-12-18 12:19:09 +00:00
parent d087850f69
commit 053d34cde7
19 changed files with 1175 additions and 4 deletions

View File

@ -48,6 +48,18 @@ public class Config
public TwitchApi Twitch { get; init; } = null!;
public string DataProtectionKeyPath { get; init; } = null!;
public VapidKeyDetails VapidKey { get; init; } = null!;
public string Redis { get; init; } = null!;
public Uri SnortApi { get; init; } = null!;
}
public class VapidKeyDetails
{
public string PublicKey { get; init; } = null!;
public string PrivateKey { get; init; } = null!;
}
public class TwitchApi