1
0
mirror of https://github.com/akpaevj/onecmonitor.git synced 2026-06-13 21:18:17 +02:00
Files

9 lines
204 B
C#

using System.ComponentModel.DataAnnotations;
namespace OneSwiss.Server.Models;
public enum NotificationChannel
{
[Display(Name = "Telegram")] Telegram,
[Display(Name = "Вебхук")] WebHook
}