mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-23 15:50:13 +01:00
8 lines
318 B
C#
8 lines
318 B
C#
namespace API.Schema.NotificationConnectors;
|
|
|
|
public class Gotify(string endpoint, string appToken)
|
|
: NotificationConnector(TokenGen.CreateToken(typeof(Gotify), 64), NotificationConnectorType.Gotify)
|
|
{
|
|
public string Endpoint { get; init; } = endpoint;
|
|
public string AppToken { get; init; } = appToken;
|
|
} |