You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
9 lines
204 B
C#
9 lines
204 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace OneSwiss.Server.Models;
|
|
|
|
public enum NotificationChannel
|
|
{
|
|
[Display(Name = "Telegram")] Telegram,
|
|
[Display(Name = "Вебхук")] WebHook
|
|
} |