mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-24 00:00:13 +01:00
9 lines
362 B
C#
9 lines
362 B
C#
namespace API.Schema.NotificationConnectors;
|
|
|
|
public class Ntfy(string endpoint, string auth, string topic)
|
|
: NotificationConnector(TokenGen.CreateToken(typeof(Ntfy), 64), NotificationConnectorType.Ntfy)
|
|
{
|
|
public string Endpoint { get; init; } = endpoint;
|
|
public string Auth { get; init; } = auth;
|
|
public string Topic { get; init; } = topic;
|
|
} |