Files
coolify/app/Notifications/Dto/SlackMessage.php
2024-11-12 22:37:55 +01:00

28 lines
479 B
PHP

<?php
namespace App\Notifications\Dto;
class SlackMessage
{
public function __construct(
public string $title,
public string $description,
public string $color = '#0099ff'
) {
}
public static function infoColor(): string
{
return '#0099ff';
}
public static function errorColor(): string
{
return '#ff0000';
}
public static function successColor(): string
{
return '#00ff00';
}
}