using System; namespace Haoliang.Models.System { public enum NotificationChannelType { None = 0, Email = 1, Sms = 2, WeChat = 3, Webhook = 4, DingTalk = 5 } public class NotificationChannel { public int ChannelId { get; set; } public string ChannelType { get; set; } public string Recipient { get; set; } public bool IsEnabled { get; set; } public string Configuration { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } } }