using ApiAlerts;
var client = new ApiAlertsClient("YOUR-API-KEY");
// Simple notification
await client.Send(message: "Deployment successful");
// With all options
await client.Send(
message: "New user signed up",
channel: "developers",
link: "https://dashboard.example.com/users/123",
tags: new[] { "signup", "organic" }
);