mirror of
https://github.com/C9Glax/tranga.git
synced 2025-02-24 00:00:13 +01:00
7 lines
232 B
C#
7 lines
232 B
C#
|
namespace API.Schema.NotificationConnectors;
|
|||
|
|
|||
|
public class Lunasea(string id)
|
|||
|
: NotificationConnector(TokenGen.CreateToken(typeof(Lunasea), 64), NotificationConnectorType.LunaSea)
|
|||
|
{
|
|||
|
public string Id { get; init; } = id;
|
|||
|
}
|