9 lines
362 B
C#
Raw Normal View History

2024-12-14 21:53:29 +01:00
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;
}